-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.98 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": "npm-deps",
"version": "1.0.0",
"description": "A coding exercise",
"main": "index.js",
"repository": "https://github.com/gfot/npm-deps.git",
"author": "gfot <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"build:client:dev": "webpack --mode development --config webpack.client.config.js",
"build:server:dev": "webpack --mode development --config webpack.server.config.js",
"build:prod": "webpack --mode production --config webpack.config.js",
"start:client:dev": "webpack-dev-server --mode development --config-name client",
"start:server:dev": "pm2 start ./dist/server.js -i 1 --watch",
"start": "pm2 start ./dist/server.js",
"test": "mocha-webpack --webpack-config webpack.test.config.js \"tests/*.test.js\""
},
"devDependencies": {
"babel-core": "6.26.3",
"babel-eslint": "8.2.3",
"babel-loader": "7.1.4",
"babel-polyfill": "6.26.0",
"babel-preset-env": "1.6.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"chai": "4.1.2",
"clean-webpack-plugin": "0.1.19",
"css-loader": "0.28.11",
"eslint": "4.19.1",
"eslint-config-airbnb": "16.1.0",
"eslint-config-prettier": "2.9.0",
"eslint-plugin-import": "2.11.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-prettier": "2.6.0",
"eslint-plugin-react": "7.7.0",
"html-loader": "0.5.5",
"html-webpack-plugin": "3.2.0",
"mini-css-extract-plugin": "0.4.0",
"mocha": "5.1.1",
"mocha-loader": "1.1.3",
"mocha-webpack": "2.0.0-beta.0",
"pm2": "2.10.3",
"prettier": "1.12.1",
"style-loader": "0.21.0",
"supertest": "3.0.0",
"webpack": "4.6.0",
"webpack-cli": "2.1.2",
"webpack-dev-server": "3.1.3",
"webpack-node-externals": "1.7.2",
"webpack-shell-plugin": "0.5.0"
},
"dependencies": {
"apicache": "1.2.1",
"express": "4.16.3",
"node-fetch": "2.1.2",
"prop-types": "15.6.1",
"react": "16.3.2",
"react-dom": "16.3.2"
}
}