forked from mediaurl/mediaurl-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 876 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
{
"name": "root",
"private": true,
"devDependencies": {
"@types/node": "^14.14.41",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-prettier": "^3.4.0",
"lerna": "^4.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"simple-git-hooks": "^2.3.1",
"typescript": "^4.2.4"
},
"scripts": {
"clean-all": "lerna clean -y && rm -rf packages/*/dist",
"test-all": "npm run clean-all && lerna bootstrap && lerna run build && lerna run test",
"publish": "npm run test-all && lerna publish"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx,css}": [
"npx eslint --fix",
"git add"
]
},
"dependencies": {
"tslint": "6.1.3"
}
}