-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.57 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.57 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "@webcodesk/react-app-framework",
"version": "2.0.28",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/webcodesk/react-app-framework.git"
},
"author": "Alex Pustovalov <apustovalov@gmail.com>",
"license": "MIT",
"description": "React App Framework for Webcodesk",
"dependencies": {
"lodash": "4.17.15",
"prop-types": "15.7.2",
"query-string": "6.2.0",
"react-redux": "7.2.0",
"react-router-dom": "5.1.2",
"redux": "4.0.5",
"redux-devtools-extension": "2.13.8",
"redux-thunk": "2.3.0",
"reselect": "4.0.0"
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"devDependencies": {
"@babel/core": "7.6.0",
"@babel/plugin-proposal-class-properties": "7.5.5",
"@babel/preset-env": "7.7.6",
"@babel/preset-react": "7.7.4",
"cross-env": "5.2.0",
"del": "^3.0.0",
"express": "^4.16.4",
"gulp": "4.0.2",
"gulp-babel": "8.0.0",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-scripts": "3.3.0",
"redux-mock-store": "^1.5.3"
},
"scripts": {
"start": "cross-env BROWSER=none NODE_PATH=./src PORT=3040 react-scripts start",
"build": "cross-env NODE_PATH=./src react-scripts build",
"test": "react-scripts test --env=jsdom --modulePaths=src",
"eject": "react-scripts eject",
"dist": "cross-env NODE_ENV=development gulp --gulpfile ./gulpfile.js build",
"server": "cross-env PORT=8080 node ./server.js"
},
"browserslist": [
">0.25%",
"not op_mini all",
"ie 11"
],
"files": [
"dist"
]
}