-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.05 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.05 KB
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
{
"name": "wcd-todo-tutorial-demo",
"version": "1.0.0",
"private": true,
"devDependencies": {
"@material-ui/core": "4.9.2",
"@webcodesk/react-app-framework": "2.0.28",
"@webcodesk/webcodesk-srv": "2.0.4",
"cross-env": "6.0.3",
"express": "4.17.1",
"localforage": "1.7.3",
"lodash": "4.17.15",
"prop-types": "15.7.2",
"react": "16.11.0",
"react-dom": "16.11.0",
"react-helmet": "5.2.1",
"react-scripts": "3.2.0"
},
"scripts": {
"start": "cross-env PORT=3030 BROWSER=none react-scripts start",
"build": "cross-env GENERATE_SOURCEMAP=false react-scripts build",
"test": "react-scripts test --modulePaths=src",
"eject": "react-scripts eject",
"wcd": "webcodesk-srv -p 7070",
"server": "node ./server.js"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}