-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.54 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
{
"name": "spa-from-scratch",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"test": "jest",
"start": "nodemon --watch build --exec \"webpack-dev-server --config build/webpack.dev.js\"",
"build": "rimraf dist && webpack --config build/webpack.prod.js",
"deploy": "git checkout master && git pull && yarn build && gh-pages -d dist"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && eslint . --ext .js,.jsx"
}
},
"dependencies": {
"@reach/router": "^1.2.1",
"@sentry/browser": "^4.6.4",
"mobx": "^5.9.0",
"mobx-react": "^5.4.3",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"styled-components": "^4.1.3"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-proposal-decorators": "^7.3.0",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"eslint": "5.3.0",
"eslint-config-airbnb": "17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.0",
"gh-pages": "^2.0.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.3.1",
"jest": "^24.1.0",
"nodemon": "^1.18.10",
"prettier": "^1.16.4",
"pretty-quick": "^1.10.0",
"rimraf": "^2.6.3",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1",
"webpack-merge": "^4.2.1"
}
}