This repository has been archived by the owner on Feb 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
57 lines (57 loc) · 1.79 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
{
"license": "MIT",
"scripts": {
"tswatch": "tsc --watch --noEmit",
"prettier": "prettier --write '*.{js,ts,json}' 'packages/**/*.{js,ts,json}'",
"format": "$npm_execpath run prettier",
"upgrade-all": "yarn upgrade && lerna run upgrade-deps",
"install-deps": "yarn && lerna run install-deps",
"dev": "lerna run dev",
"build": "lerna run build",
"link-all": "lerna run run-link",
"link-client": "lerna run link-client",
"setup-all-packages": "$npm_execpath install-deps && $npm_execpath link-all && $npm_execpath link-client && $npm_execpath build",
"type-check": "tsc --noEmit",
"test": "jest",
"publish-all": "lerna publish",
"prepublishOnly": "lerna run build"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.14.9",
"@babel/preset-typescript": "^7.14.5",
"@babel/runtime": "^7.14.8",
"@types/jest": "^24.0.19",
"babel-jest": "^27.0.6",
"babel-loader": "^8.2.2",
"bundlesize": "^0.17.1",
"husky": "^3.0.8",
"jest": "^24.9.0",
"lerna": "^3.20.2",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4",
"size-limit": "^4.0.0",
"typescript": "^4.3.5",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2",
"webpack-merge": "^5.8.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"linters": {
"*.{js,ts,json}": [
"prettier --write",
"git add"
]
},
"ignore": [
"**/dist/**"
]
}
}