-
Notifications
You must be signed in to change notification settings - Fork 142
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 2.02 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 2.02 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
46
47
48
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build:web": "cd packages/core-web && npm run build",
"prebuild:backend": "npm run clean",
"build:backend": "node ./scripts/prepCliOutput.js && tsc --build",
"build:dg": "cd docs && node ../packages/cli/dist/index.js build -s dg-site.json",
"build:ug": "cd docs && node ../packages/cli/dist/index.js build -s ug-site.json",
"build:docs": "cd docs && node ../packages/cli/dist/index.js build --baseUrl",
"deploy:dg": "cd docs && node ../packages/cli/dist/index.js deploy -s dg-site.json --ci",
"deploy:ug": "cd docs && node ../packages/cli/dist/index.js deploy -s ug-site.json --ci",
"deploy:netlify": "npm run setup && npm run build:web && cd docs && node ../packages/cli/dist/index.js build --baseUrl",
"clean": "tsc --build --clean && node ./scripts/clean.js",
"csslint": "stylelint **/*.css **/*.vue",
"csslintfix": "stylelint **/*.css **/*.vue --fix",
"dev": "node ./scripts/prepCliOutput.js && tsc --build --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 build:backend",
"test": "npm run lint && lerna run test --stream",
"updatetest": "lerna run updatetest --stream"
},
"devDependencies": {
"@babel/preset-typescript": "^7.28.5",
"@stylistic/stylelint-plugin": "^2.1.0",
"@types/node": "^22.19.11",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"danger": "^13.0.4",
"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": "^8.2.4",
"postcss": "^8.5.6",
"stylelint": "^16.2.1",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard": "^36.0.0",
"tsx": "^4.21.0",
"typescript": "^5.3.3",
"walk-sync": "^2.0.2"
}
}