-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.1 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
59
60
61
62
63
64
65
66
67
68
{
"name": "react_template",
"version": "1.0.2",
"description": "React template",
"main": "./server/index.js",
"scripts": {
"start": "concurrently -p --kill-others \"npm:build:dev\" \"npm:start:dev\"",
"test": "echo \"Error: no test specified\" && exit 1",
"start:dev": "nodemon --watch ./server/server.js",
"build:dev": "webpack --progress",
"prod": "cross-env NODE_ENV=production webpack",
"jest": "jest",
"flow": "flow"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-proposal-decorators": "^7.3.0",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/plugin-transform-arrow-functions": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^8.2.6",
"babel-jest": "^23.6.0",
"css-loader": "^1.0.1",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.9.1",
"eslint": "^5.13.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-flowtype": "^3.2.1",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"file-loader": "^1.1.11",
"flow-bin": "^0.92.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.6.0",
"mini-css-extract-plugin": "^0.4.5",
"nodemon": "^1.18.10",
"regenerator-runtime": "^0.13.1",
"uglifyjs-webpack-plugin": "^1.3.0",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3"
},
"dependencies": {
"@babel/polyfill": "^7.2.5",
"@babel/register": "^7.0.0",
"autoprefixer": "^9.4.7",
"babel-loader": "^8.0.5",
"concurrently": "^4.1.0",
"copy-webpack-plugin": "^4.6.0",
"cross-env": "^5.2.0",
"express": "^4.16.4",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-loader": "^3.0.0",
"pug": "^2.0.3",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"socket.io": "^2.2.0",
"socket.io-client": "^2.2.0"
}
}