-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 1.81 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
{
"name": "with-next-stylus",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development INIT_ENV=dev node server",
"build:prod": "cross-env NODE_ENV=production INIT_ENV=prod next build",
"build:pre": "cross-env NODE_ENV=production INIT_ENV=prod next build",
"build:test": "cross-env NODE_ENV=production INIT_ENV=test next build"
},
"dependencies": {
"@rematch/core": "^1.2.0",
"@rematch/loading": "^1.2.1",
"@sentry/browser": "^5.7.1",
"@sentry/node": "^5.7.1",
"@zeit/next-stylus": "^1.0.1",
"axios": "^0.19.0",
"classnames": "^2.2.6",
"cross-env": "^6.0.3",
"http-proxy-middleware": "^0.20.0",
"koa": "^2.11.0",
"koa-router": "^7.4.0",
"koa2-connect": "^1.0.2",
"next": "^9.4.4",
"next-compose-plugins": "^2.2.0",
"next-transpile-modules": "^2.3.1",
"postcss-flexbugs-fixes": "^4.2.1",
"postcss-preset-env": "^6.7.0",
"postcss-pxtorem": "^4.0.1",
"react": "16.11.0",
"react-dom": "16.11.0",
"react-redux": "^7.1.1",
"stylus": "^0.54.7"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"pretty-quick --staged",
"eslint --fix",
"git add"
]
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"eslint": "^6.5.1",
"eslint-config-airbnb": "18.0.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"husky": "^3.0.9",
"lint-staged": "^10.0.0-0",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
}
}