-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·38 lines (38 loc) · 978 Bytes
/
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
{
"name": "TNS_CONFIG_NAME",
"description": "TNS_CONFIG_DESCRIPTION",
"version": "1.0.0",
"author": "TNS_CONFIG_AUTHOR",
"scripts": {
"dev": "concurrently \"tsc --watch\" next",
"commitmsg": "commitlint -e $GIT_PARAMS",
"commit": "git-cz",
"export": "next build && next export"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"next": "^4.2.1",
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"devDependencies": {
"@commitlint/cli": "^5.2.0",
"@commitlint/config-conventional": "^5.1.3",
"@types/react": "^16.0.9",
"@types/react-dom": "^16.0.1",
"commitizen": "^2.9.6",
"concurrently": "^3.1.0",
"cz-conventional-changelog": "^2.1.0",
"husky": "^0.14.3",
"prettier": "^1.7.4",
"tslint": "^5.7.0",
"tslint-config-prettier": "^1.5.0",
"tslint-react": "^3.2.0",
"typescript": "^2.5.3"
},
"license": "MIT"
}