-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 788 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 788 Bytes
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
{
"name": "otaku",
"version": "0.0.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"test": "node test",
"commit": "cz",
"release": "standard-version",
"prepare": "husky install"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@types/webpack": "^5.28.0",
"husky": "^8.0.2",
"lerna": "^6.0.3",
"lint-staged": "^13.0.3",
"prettier": "^2.5.1",
"standard-version": "^9.3.1"
},
"dependencies": {
"json5": "^2.2.0",
"typedoc": "^0.23.21",
"typescript": "^4.7.0-dev.20220408"
}
}