-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.94 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "bolt-express",
"version": "0.0.19",
"type": "module",
"scripts": {
"dev": "vite build --mode staging && run-p devmain ccweb",
"build": "vite build --mode build",
"serve": "ccweb-add-on-scripts start --analytics off --use \"vite build --mode build\" --src=dummy",
"ccweb": "ccweb-add-on-scripts start --analytics off --src=\".tmp\"",
"cert": "npx @adobe/ccweb-add-on-ssl setup --hostname localhost",
"devmain": "cross-env MODE=dev vite --mode dev",
"devcode": "vite build --watch --mode dev --config vite.config.code.ts",
"buildcode": "vite build --config vite.config.code.ts",
"zip": "cross-env MODE=zip vite build",
"check": "svelte-check --tsconfig ./tsconfig.json",
"dep": "cross-env ACTION=dependencyCheck vite"
},
"devDependencies": {
"@adobe/ccweb-add-on-scripts": "^2.4.1",
"@adobe/ccweb-add-on-sdk-types": "^1.9.1",
"@sveltejs/vite-plugin-svelte": "^3.1.1",
"@tsconfig/svelte": "^5.0.4",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitejs/plugin-vue": "^5.1.4",
"cross-env": "^7.0.3",
"npm-run-all": "^4.1.5",
"parallel": "^1.2.0",
"sass": "^1.79.4",
"svelte": "^4.2.18",
"svelte-check": "^3.8.5",
"tslib": "^2.6.3",
"typescript": "^5.5.3",
"vite": "^5.4.8",
"vite-express-plugin": "^0.0.19"
},
"dependencies": {
"@vitejs/plugin-basic-ssl": "^1.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"vite-plugin-mkcert": "^1.17.6",
"vue": "^3.5.10"
},
"files": [
"index.html",
"package.json",
"package.react.jsonc",
"package.svelte.jsonc",
"package.vue.jsonc",
"public/**/*",
"public-zip/**/*",
"README.md",
"src/**/*",
"src-code/**/*",
"shared/**/*",
".github/**/*",
"tsconfig.json",
"express.config.ts",
"vite.config.ts",
"vite.config.code.ts",
"yarn.lock",
".npmrc",
".gitignore"
]
}