-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.29 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "squares",
"version": "1.0.0",
"main": "index.js",
"repository": "",
"author": "Toneloke",
"license": "MIT",
"dependencies": {
"axios": "^0.18.0",
"express": "^4.16.4",
"moment": "^2.24.0",
"mongoose": "^5.4.8",
"react": "^16.8.0-alpha.1",
"react-dom": "^16.8.0-alpha.1",
"react-helmet": "^5.2.0",
"react-loadable": "^5.5.0",
"react-router": "^4.3.1",
"react-router-config": "^1.0.0-beta.4",
"react-router-dom": "^4.3.1"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-loader": "^7.1.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"css-loader": "^2.0.2",
"eslint": "^5.12.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-flowtype": "^3.2.1",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-json": "^1.3.2",
"eslint-plugin-jsx-a11y": "^6.2.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-standard": "^4.0.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^3.0.1",
"husky": "^1.3.1",
"ignore-loader": "^0.1.2",
"install": "^0.12.2",
"lint-staged": "^8.1.1",
"node-sass": "^4.11.0",
"nodemon": "^1.18.9",
"npm-run-all": "^4.1.5",
"prettier": "^1.16.3",
"sass-loader": "^7.1.0",
"webpack": "^4.28.1",
"webpack-cli": "^3.1.2",
"webpack-node-externals": "^1.7.2"
},
"scripts": {
"reset:server": "rm -rf ./node_modules package-lock.json && npm i",
"build:client": "webpack --config webpack.client.config.js --watch",
"build:server": "webpack --config webpack.server.config.js --watch",
"start:server": "nodemon --watch bin bin/server.js",
"start": "run-p build:client build:server start:server",
"lint": "eslint --fix src",
"precommit": "lint-staged"
},
"lint-staged": {
"src/**/*.{js,jsx,json,css,md}": [
"eslint --fix src",
"git add"
]
}
}