-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.6 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": "wx-node",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"lint": "tslint src/**/*.tsc && tslint src/**/*.ts && eslint ./ && stylelint ./**/*.css"
},
"repository": {
"type": "git",
"url": "[email protected]:wangshilong/wx-node.git"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run lint "
}
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@zeit/next-css": "^1.0.1",
"@zeit/next-typescript": "^1.1.1",
"classnames": "^2.2.6",
"lodash.throttle": "^4.1.1",
"mobx": "^5.6.0",
"mobx-react": "^5.4.2",
"next": "^7.0.2",
"react": "^16.6.3",
"react-dom": "^16.6.3"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.6",
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"@svgr/webpack": "^4.0.3",
"@types/classnames": "^2.2.6",
"@types/lodash.throttle": "^4.1.4",
"@types/next": "^7.0.5",
"@types/react": "^16.7.6",
"acorn": "^6.0.4",
"acorn-jsx": "^5.0.0",
"css-loader": "^1.0.1",
"eslint": "^5.9.0",
"eslint-plugin-react": "^7.11.1",
"espree": "^4.1.0",
"husky": "^1.1.4",
"postcss-cssnext": "^3.1.0",
"postcss-import": "^12.0.1",
"stylelint": "^9.8.0",
"stylelint-config-recommended": "^2.1.0",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.16.0",
"typescript": "^3.1.6"
}
}