forked from bigcommerce/big-design
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.04 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
{
"name": "big-design",
"private": true,
"version": "0.3.2",
"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",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"prettier": "@bigcommerce/eslint-config/prettier",
"devDependencies": {
"@bigcommerce/eslint-config": "^2.4.0",
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@types/babel__standalone": "^7.1.4",
"eslint": "^8.11.0",
"husky": "^7.0.4",
"lerna": "^4.0.0",
"lint-staged": "^13.0.0",
"typescript": "^4.4.3"
}
}