forked from bigcommerce/big-design
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.43 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
{
"name": "big-design",
"private": true,
"license": "SEE LICENSE IN LICENSE.md",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build --stream",
"build:icons": "yarn workspace @bigcommerce/big-design-icons run build",
"ci:typeCheck": "lerna run typeCheck --stream",
"ci:test": "lerna run test --stream -- --maxWorkers=2 --coverage",
"diff": "lerna diff",
"lint": "eslint . --ext .ts,.tsx,.js",
"start": "yarn workspace @bigcommerce/docs run start",
"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.31.1",
"@typescript-eslint/parser": "^4.31.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.2.5",
"lerna": "^4.0.0",
"lint-staged": "^9.2.0",
"prettier": "^2.4.0",
"typescript": "^4.4.3"
},
"resolutions": {
"is-svg": "^4.3.1",
"node-notifier": "^8.0.1"
}
}