-
Notifications
You must be signed in to change notification settings - Fork 124
/
package.json
47 lines (47 loc) · 1.9 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
40
41
42
43
44
45
46
47
{
"name": "root",
"private": true,
"workspaces": ["packages/*"],
"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",
"build:docs": "cd docs && node ../packages/cli/index.js build --baseUrl",
"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",
"deploy:netlify": "npm run setup && npm run build:web && cd docs && node ../packages/cli/index.js build --baseUrl",
"clean": "node ./scripts/clean.js",
"csslint": "stylelint **/*.css **/*.vue",
"csslintfix": "stylelint **/*.css **/*.vue --fix",
"dev": "tsc --watch",
"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 run prepare",
"test": "npm run lint && lerna run test --stream --parallel",
"updatetest": "lerna run updatetest --stream --parallel"
},
"devDependencies": {
"@stylistic/stylelint-plugin": "^2.1.0",
"@types/node": "^18.15.0",
"@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": "^6.5.1",
"stylelint": "^16.2.1",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard": "^36.0.0",
"typescript": "^4.6.2",
"walk-sync": "^2.0.2"
},
"dependencies": {
"@markbind/core": "^5.4.0",
"danger": "^12.1.0",
"postcss": "^8.4.35"
}
}