-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 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
{
"name": "advanced-react",
"version": "1.0.0",
"main": "lib/server.js",
"author": "Satnam S Virdi",
"license": "MIT",
"scripts": {
"dev": "set NODE_PATH=./lib&& nodemon --exec babel-node lib/server.js",
"webpack": "webpack -wd",
"test": "jest --watch",
"verify-tests": "jest --coverage",
"build-webpack": "webpack -p",
"build-node": "babel lib -d build --copy-files",
"start-prod": "set NODE_ENV=production NODE_PATH=./build&& nodemon --exec build/server.js"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"babel-jest": "^26.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^7.4.0",
"eslint-plugin-react": "^7.20.3",
"jest": "^26.1.0",
"pm2": "^4.4.0",
"react-test-renderer": "^16.13.1",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.10.4",
"@babel/node": "^7.10.4",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-decorators": "^7.10.4",
"@babel/plugin-proposal-export-namespace-from": "^7.10.4",
"@babel/plugin-proposal-function-sent": "^7.10.4",
"@babel/plugin-proposal-json-strings": "^7.10.4",
"@babel/plugin-proposal-numeric-separator": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.10.4",
"@babel/plugin-proposal-throw-expressions": "^7.10.4",
"@babel/plugin-syntax-class-properties": "^7.10.4",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/polyfill": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@babel/preset-stage-2": "^7.8.3",
"axios": "^0.19.2",
"babel-core": "7.0.0-bridge.0",
"babel-loader": "^8.1.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"ejs": "^3.1.3",
"express": "^4.17.1",
"lodash.debounce": "^4.0.8",
"lodash.pickby": "^4.6.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"webpack": "^4.43.0"
}
}