-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.56 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.56 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
{
"name": "advanced-react",
"version": "1.0.0",
"description": "Advanced React",
"main": "lib/server.js",
"author": "Adam H",
"license": "MIT",
"scripts": {
"dev": "set NODE_PATH=./lib&& nodemon --exec babel-node lib/server.js --watch",
"webpack": "webpack -wd",
"test": "jest --watch",
"verify-tests": "jest --coverage",
"build-webpack": "webpack -p",
"build-node": "babel lib -d build --copy-files"
},
"babel": {
"presets": [
"react",
[ "env", { "targets": { "node": "current" } } ]
],
"plugins": ["transform-class-properties", "transform-object-rest-spread"]
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"enzyme": "2.9.1",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-standard": "^4.0.1",
"jest": "19",
"react-perf-devtool": "^3.1.8",
"react-test-renderer": "^16.13.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"axios": "^0.19.2",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"ejs": "^3.0.1",
"express": "^4.17.1",
"lodash.debounce": "^4.0.8",
"lodash.pickby": "^4.6.0",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"webpack": "^4.42.0"
}
}