-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathpackage.json
76 lines (76 loc) · 2.09 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "react-windows-ui-app",
"version": "4.2.4",
"private": false,
"description": "Build full featured Windows Fluent UI apps using ReactJS.",
"keywords": [
"react",
"fluentui",
"windows11",
"user-interface",
"react-component",
"responsive",
"uwp",
"electronJS",
"mobile"
],
"homepage": "https://virtualvivek.github.io/react-windows-ui",
"bugs": {
"url": "https://github.com/virtualvivek/react-windows-ui/issues"
},
"license": "MIT",
"author": {
"name": "Vivek Verma",
"email": "virtualvivek7@gmail.com"
},
"dependencies": {
"node-sass": "^9.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.3.0",
"react-scripts": "^5.0.1",
"react-syntax-highlighter": "^15.4.3",
"web-vitals": "^2.1.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/virtualvivek/react-windows-ui.git"
},
"scripts": {
"start": "react-scripts start",
"build:production": "rm -rf dist && SET NODE_ENV=production && babel src/lib/src --out-dir src/lib/dist --copy-files",
"build": "react-scripts build",
"compile:sass": "node-sass src/lib/scss/main.scss src/lib/dist/react-windows-ui.min.css --output-style compressed",
"compile:sass-rtl": "node-sass src/lib/scss/stylesheet-rtl/main.scss src/lib/dist/react-windows-ui-rtl.min.css --output-style compressed",
"predeploy": "npm run build",
"deploy": "gh-pages -d build -r https://github.com/virtualvivek/react-windows-ui",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
">0.2%",
"not dead",
"not op_mini all"
]
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/preset-env": "^7.14.7",
"babel-preset-minify": "^0.5.1",
"gh-pages": "^3.2.3",
"react-error-overlay": "^6.0.9"
}
}