-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.44 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
{
"name": "@zero-scriptsjs/monorepo",
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"build": "tsc -b packages",
"prepublishOnly": "run-s remove-build build",
"remove-build": "rimraf packages/*/build packages/*/*.tsbuildinfo",
"test": "jest",
"watch": "tsc -b packages --watch"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint-staged"
}
},
"lint-staged": {
"*.{js,ts,jsx,tsx,md,json}": [
"prettier --write"
],
"*.{js,ts,jsx,tsx}": [
"eslint --format=pretty --fix"
]
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/jest-image-snapshot": "^4.3.0",
"@types/node": "^14.14.22",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-formatter-pretty": "^4.0.0",
"eslint-import-resolver-node": "^0.3.4",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-import-helpers": "^1.1.0",
"eslint-plugin-prettier": "^3.3.1",
"get-port": "^5.1.1",
"husky": "^4.3.8",
"jest": "^26.6.3",
"jest-image-snapshot": "^4.4.0",
"lerna-changelog": "1.0.1",
"lint-staged": "^10.5.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"prettier-plugin-packagejson": "^2.2.9",
"puppeteer": "^8.0.0",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
}
}