forked from TaoriYu/nextjs_app_template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.69 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
{
"name": "template-app",
"scripts": {
"dev": "next",
"build": "next build",
"build:static": "gulp --gulpfile ./semantic/gulpfile.js build",
"start": "next start",
"lint": "tslint --project ./tsconfig.json",
"lint:staged": "lint-staged",
"typecheck": "tsc --noEmit",
"test": "jest"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged && npm test"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"tslint"
]
},
"dependencies": {
"@zeit/next-css": "^1.0.1",
"@zeit/next-typescript": "^1.1.1",
"axios": "^0.18.0",
"class-transformer": "^0.2.0",
"debug": "^4.1.0",
"fork-ts-checker-webpack-plugin": "^0.5.0",
"inversify": "^5.0.1",
"next": "^7.0.2",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"reflect-metadata": "^0.1.12",
"semantic-ui-react": "^0.83.0",
"ts-loader": "^5.3.1",
"tslint-react": "^3.6.0"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.2.1",
"@babel/plugin-proposal-decorators": "^7.2.0",
"@types/axios": "^0.14.0",
"@types/debug": "0.0.31",
"@types/jest": "^23.3.10",
"@types/next": "^7.0.5",
"@types/react": "^16.7.13",
"hygen": "^1.6.2",
"commitlint": "^7.2.1",
"cz-customizable": "^5.3.0",
"husky": "^1.2.0",
"jest": "^23.6.0",
"lint-staged": "^8.1.0",
"semantic-ui": "^2.4.2",
"ts-jest": "^23.10.5",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.2.2"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./.cz-config.js"
}
}
}