-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.21 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
{
"name": "root",
"private": true,
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build",
"build:doc": "lerna run --parallel build:doc",
"build:watch": "lerna run --parallel build -- --watch",
"clean": "lerna clean -y && lerna run --parallel clean",
"lint": "lerna run --parallel lint",
"lint:commit": "commitlint --verbose --edit",
"lint:fix": "lerna run --parallel lint -- --fix",
"prepare": "npm run build && husky install",
"publish": "npm run version && lerna publish --no-private",
"start": "lerna run start",
"test": "lerna run --parallel test",
"upgrade:all": "npm-upgrade && lerna exec --concurrency 1 npm-upgrade",
"preversion": "npm run clean && npm i && npm run lint && npm run build && npm run test",
"version": "lerna version && npm run build",
"postversion": "git push && git push --tags"
},
"dependencies": {
"@commitlint/cli": "^17.7.2",
"@commitlint/config-conventional": "^17.7.0",
"@tsconfig/svelte": "^5.0.2",
"husky": "^8.0.3",
"lerna": "^8.1.8",
"svelte-check": "^4.0.0",
"svelte-preprocess": "^5.0.4",
"typescript": "^5.2.2"
},
"engines": {
"node": "^18.12"
}
}