forked from iamyoki/set-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.24 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.24 KB
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
{
"name": "root",
"private": true,
"version": "0.0.0",
"main": "index.js",
"author": "Yoki Yu <yokiyuqian@gmail.com>",
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"prepare": "husky install",
"postinstall": "preconstruct dev",
"bootstrap": "preconstruct init && yarn",
"build:web": "yarn workspace @set-registry/web run build",
"build": "preconstruct build && yarn build:web",
"dev:web": "yarn workspace @set-registry/web run start",
"dev": "yarn && yarn dev:web",
"lint": "eslint packages/**/src --ext .ts,.tsx",
"release": "lerna publish"
},
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@preconstruct/cli": "^2.1.5",
"@qhlab/eslint-plugin": "^1.9.0",
"eslint": "^8.7.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^7.0.0",
"lerna": "^4.0.0",
"lint-staged": "^12.3.1",
"typescript": "^4.5.5"
},
"preconstruct": {
"packages": [
"packages/*",
"!packages/web"
]
}
}