-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (43 loc) · 2.02 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
{
"name": "ant-design-blazor-extensions",
"version": "1.0.0",
"description": "",
"main": "exampleJsInterop.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src --fix",
"lint:create": "eslint --init",
"generate:bundle:css": "node scripts/bundle-copy-css.js",
"generate:bundle:js": "node scripts/bundle-copy-js.js",
"generate:bundle": "npm run generate:bundle:css && npm run generate:bundle:js",
"build-all:css": "npm run generate:bundle:css && vite build --config vite.config.build.css.ts --mode development",
"build-all:js": "npm run generate:bundle:js && vite build --config vite.config.build.js.ts --mode development",
"build-prod:css": "npm run generate:bundle:css && vite build --config vite.config.build.css.ts --mode production",
"build-prod:js": "npm run generate:bundle:js && vite build --config vite.config.build.js.ts --mode production",
"build-all": "npm run build-all:js && npm run build-all:css",
"build-all-prod": "npm run generate:bundle && vite build --config vite.config.build.ts --mode production",
"generate:proj:css": "node scripts/component-copy-css.js",
"generate:proj:js": "node scripts/component-copy-js.js",
"generate:proj": "npm run generate:proj:css && npm run generate:proj:js",
"build:css": "npm run generate:proj:css && node scripts/component-build-css.js --mode development",
"build:js": "npm run generate:proj:js && node scripts/component-build-js.js --mode development",
"build": "npm run build:css && npm run build:js",
"clear": "node scripts/clear.js"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^8.53.0",
"fs-extra": "^11.1.1",
"glob": "^10.3.10",
"monaco-editor": "^0.44.0",
"path": "^0.12.7",
"postcss-import": "^15.1.0",
"rollup-plugin-external-globals": "^0.8.0",
"sass": "^1.69.4",
"typescript": "^5.2.2",
"vite": "^4.5.0"
}
}