forked from MarkBind/markbind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.58 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
{
"name": "root",
"private": true,
"scripts": {
"prebuild:backend": "npm run clean",
"build:backend": "tsc --noEmitOnError",
"build:web": "cd packages/core-web && npm run build",
"build:dg": "cd docs && ../packages/cli/index.js build -s dg-site.json",
"build:ug": "cd docs && ../packages/cli/index.js build -s ug-site.json",
"deploy:dg": "cd docs && ../packages/cli/index.js deploy -s dg-site.json --ci",
"deploy:ug": "cd docs && ../packages/cli/index.js deploy -s ug-site.json --ci",
"clean": "node ./scripts/clean.js",
"csslint": "stylelint **/*.css **/*.vue",
"csslintfix": "stylelint **/*.css **/*.vue --fix",
"dev": "tsc --watch",
"install": "npm run install:hooks",
"install:hooks": "git config core.hooksPath .githooks",
"lint": "eslint . --ext .js,.ts,.vue && npm run csslint",
"lintfix": "eslint . --ext .js,.ts,.vue --fix && npm run csslintfix",
"setup": "npm ci && npm run clean && lerna clean --yes && lerna bootstrap --hoist",
"test": "npm run lint && lerna run test --stream",
"updatetest": "lerna run updatetest --stream"
},
"devDependencies": {
"@types/node": "^17.0.22",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.4",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-lodash": "^7.2.0",
"lerna": "^3.22.1",
"stylelint": "^12.0.0",
"stylelint-config-standard": "^19.0.0",
"typescript": "^4.6.2",
"walk-sync": "^2.0.2"
}
}