-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 958 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
39
40
41
42
{
"name": "tssr",
"version": "0.1.0",
"description": "Tools for Server Side Rendering",
"repository": "git@github.com:robdonn/tssr.git",
"author": {
"name": "Robert Donnelly",
"email": "dev@robdonn.com",
"url": "https://robdonn.github.io"
},
"license": "MIT",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"commit": "git-cz",
"test": "jest"
},
"devDependencies": {
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"@commitlint/prompt": "^7.5.0",
"commitizen": "^3.0.7",
"globby": "^9.1.0",
"husky": "^1.3.1",
"jest": "^24.5.0",
"jest-express": "^1.10.0",
"jest-haste-map": "^24.5.0",
"jest-resolve": "^24.5.0",
"lerna": "^3.13.1",
"lerna-changelog": "^0.8.2",
"webpack": "^4.29.6"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}