-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.49 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
{
"name": "ulka-monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"cb": "wsrun --stages cb",
"lint": "eslint packages/**/src/**/*.ts",
"clean": "wsrun clean",
"build": "wsrun --stages build",
"changelog": "wsrun changelog",
"test": "jest"
},
"devDependencies": {
"@jest/types": "^26.6.2",
"@types/jest": "^26.0.23",
"@types/node": "^15.3.0",
"@types/node-fetch": "^2.5.10",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"ansi-colors": "^4.1.1",
"cheerio": "^1.0.0-rc.9",
"conventional-changelog-cli": "^2.1.1",
"enquirer": "^2.3.6",
"eslint": "^7.12.1",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^4.2.1",
"execa": "^5.0.0",
"jest": "^26.6.3",
"lint-staged": "^11.0.0",
"minimist": "^1.2.5",
"node-fetch": "^2.6.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.0",
"rimraf": "^3.0.2",
"sass": "^1.33.0",
"semver": "^7.3.5",
"ts-jest": "^26.5.6",
"ts-node": "^9.1.1",
"typescript": "^4.2.4",
"wsrun": "^5.2.4",
"yorkie": "^2.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged && yarn cb && yarn test && git add .",
"commit-msg": "./scripts/commit-lint"
},
"lint-staged": {
"*.ts": [
"eslint --fix"
]
}
}