-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 899 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 899 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
38
39
40
41
{
"name": "processor-root",
"private": true,
"version": "1.0.0",
"scripts": {
"build": "lerna run build --stream",
"dev": "lerna run dev --parallel",
"lint": "eslint . --fix",
"postpack": "npm run build"
},
"workspaces": [
"packages/*"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": "eslint --fix"
},
"eslintIgnore": [
"**/*.js"
],
"devDependencies": {
"@types/jest": "^25.2.3",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lerna": "^3.22.0",
"lint-staged": "^10.2.7",
"majestic": "^1.7.0",
"microbundle": "^0.13.1",
"prettier": "^2.0.5",
"standard-version": "^8.0.2",
"ts-jest": "^26.1.0"
}
}