-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.46 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.46 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
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "react-minesweeper",
"version": "1.0.0",
"description": "React Minesweeper",
"main": "index.js",
"author": "Marcos Pont",
"license": "MIT",
"scripts": {
"clean": "rimraf ./public ./build",
"prestart": "npm run clean",
"start": "nodemon --exec babel-node src/server/index.js --ignore src/client",
"test:watch": "jest --watchAll --config=config/jest.config.js",
"test:coverage": "jest --coverage --config=config/jest.config.js",
"prebuild": "npm run clean",
"build-webpack": "webpack -p --env.production --config config/webpack.config.js",
"build-node": "babel src/server -d build --copy-files",
"build": "npm run build-webpack && npm run build-node",
"start-prod": "set NODE_ENV=production && set NODE_PATH=./build && pm2 start build/index.js -i max"
},
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/core": "7.8.4",
"@babel/node": "7.8.4",
"@babel/plugin-proposal-class-properties": "7.8.3",
"@babel/plugin-proposal-decorators": "7.8.3",
"@babel/plugin-proposal-object-rest-spread": "7.8.3",
"@babel/polyfill": "7.8.3",
"@babel/preset-env": "7.8.4",
"@babel/preset-react": "7.8.3",
"autoprefixer": "9.1.0",
"babel-eslint": "10.0.3",
"babel-jest": "25.1.0",
"babel-loader": "8.0.6",
"babel-plugin-array-includes": "2.0.3",
"css-loader": "3.4.2",
"eslint": "6.8.0",
"eslint-config-airbnb": "18.0.1",
"eslint-config-prettier": "6.10.0",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-jest": "23.6.0",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-react": "7.18.3",
"file-loader": "5.0.2",
"html-webpack-plugin": "3.2.0",
"identity-obj-proxy": "3.0.0",
"postcss-loader": "3.0.0",
"precss": "4.0.0",
"prettier": "1.19.1",
"style-loader": "1.1.3",
"url-loader": "3.0.0",
"write-file-webpack-plugin": "4.5.1"
},
"dependencies": {
"@decorators/di": "1.0.2",
"@decorators/express": "2.3.0",
"autobind-decorator": "2.4.0",
"body-parser": "1.19.0",
"classnames": "2.2.6",
"compression": "1.7.4",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.2",
"enzyme-to-json": "3.4.4",
"express": "4.17.1",
"global": "4.4.0",
"jest": "25.1.0",
"mobx": "4.15.4",
"mobx-react": "6.1.4",
"pm2": "4.0.0",
"prop-types": "15.7.2",
"react": "16.12.0",
"react-dom": "16.12.0",
"react-favicon": "0.0.17",
"rimraf": "3.0.1",
"webpack": "4.41.5",
"webpack-cli": "3.3.10",
"webpack-dev-middleware": "3.7.2",
"webpack-hot-middleware": "2.25.0"
}
}