forked from bigcommerce/big-design
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.29 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
{
"name": "big-design",
"private": true,
"license": "SEE LICENSE IN LICENSE.md",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build --stream",
"ci": "lerna run ci --stream",
"diff": "lerna diff",
"lint": "eslint . --ext .ts,.tsx,.js",
"start": "lerna run start --stream --parallel --ignore @bigcommerce/examples",
"test": "lerna run test --stream"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix",
"git add"
]
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.2.5",
"lerna": "^4.0.0",
"lint-staged": "^9.2.0",
"prettier": "^2.0.5",
"typescript": "^4.3.5"
},
"resolutions": {
"is-svg": "^4.3.1",
"node-notifier": "^8.0.1"
}
}