-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.25 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
{
"name": "chowchow",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"boot": "lerna bootstrap",
"dev:root": "lerna run dev --scope=root",
"dev:block-sync": "lerna run dev --scope=block-sync",
"dev:tailwind-demo": "lerna run dev --scope=tailwind-demo",
"dev:webpack-demo": "lerna run dev --scope=webpack-demo",
"build:root": "lerna run build --scope=root",
"build:block-sync": "lerna run build --scope=block-sync",
"build:tailwind-demo": "lerna run build --scope=tailwind-demo",
"build:webpack-demo": "lerna run build --scope=webpack-demo",
"build:rollup-demo": "lerna run build --scope=rollup-demo",
"clean": "lerna clean",
"lint": "eslint 'packages/**/*.{js,jsx,ts,tsx}' --fix",
"stylelint": "stylelint '**/*.{css,less,scss}' --fix",
"format": "prettier '**/*.{js,jsx,ts,tsx,json,md}' --write",
"prepare": "husky install"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"eslint": "^8.23.0",
"eslint-plugin-react": "^7.31.1",
"husky": "^8.0.0",
"lerna": "^5.5.0",
"lint-staged": "^13.0.3",
"prettier": "2.7.1",
"stylelint": "^14.11.0",
"stylelint-config-standard": "^28.0.0"
}
}