-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.82 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
{
"name": "react-next-project",
"version": "0.1.0",
"private": true,
"description": "Yidmua驿站",
"author": "Yidmua小蚁",
"scripts": {
"dev": "nodemon",
"build": "next build && tsc --project tsconfig.server.json"
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-proposal-decorators": "^7.3.0",
"@commitlint/cli": "^8.0.0",
"@commitlint/config-conventional": "^8.0.0",
"@svgr/webpack": "^4.3.1",
"@types/moment": "^2.13.0",
"@types/next": "^8.0.6",
"@types/next-redux-saga": "^3.0.1",
"@types/node": "^12.6.8",
"@types/react": "^16.8.23",
"@types/react-redux": "^7.1.1",
"@zeit/next-css": "^1.0.1",
"@zeit/next-sass": "^1.0.1",
"@zeit/next-typescript": "^1.1.1",
"antd-mobile": "^2.2.14",
"babel-plugin-import": "^1.12.0",
"babel-preset-env": "^1.7.0",
"es6-promise": "^4.2.8",
"express": "^4.17.1",
"husky": "^2.7.0",
"lint-staged": "^8.2.1",
"next": "^9.0.3",
"next-redux-saga": "^4.0.2",
"next-redux-wrapper": "^3.0.0-alpha.3",
"node": "^12.7.0",
"node-sass": "^4.12.0",
"nodemon": "^1.19.1",
"postcss-pxtorem": "^4.0.1",
"prettier": "^1.18.2",
"react": "16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^7.1.0",
"redux": "^4.0.4",
"redux-devtools-extension": "^2.13.8",
"redux-logger": "^3.0.6",
"redux-saga": "^1.0.5",
"styled-jsx-plugin-postcss": "^2.0.1",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"./**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --single-quote --write",
"git add"
]
}
}