-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.61 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
{
"name": "universal-navigation",
"private": true,
"version": "1.0.22",
"type": "module",
"main": "./src/main.ts",
"types": "./types/src/main.d.ts",
"repository": "https://github.com/topcoder-platform/universal-navigation.git",
"scripts": {
"build:nudge": "APP_BUILD_TARGET=nudge vite build --mode=production",
"build:base": "vite build --mode=production && npx rimraf ./types && npm run types",
"build": "npm run build:base && npm run build:nudge",
"check": "svelte-check --tsconfig ./tsconfig.json",
"demo:dist": "npx http-server --cors --host local.topcoder-dev.com --port 8083 ./dist",
"demo:marketing": "npx http-server --host local.topcoder-dev.com --port 8081 ./demo/marketing -P http://local.topcoder-dev.com:8081? -o /",
"demo:tool": "npx http-server --host local.topcoder-dev.com --port 8082 ./demo/tool -P http://local.topcoder-dev.com:8081? -o /",
"demo": "npx npm-run-all --npm-path npm -p demo:*",
"deploy-stack": "cd iac && sh deploy-stack.sh",
"dev": "vite --host",
"preview": "vite preview",
"types": "./node_modules/typescript/bin/tsc -p ./tsconfig.json --declaration --emitDeclarationOnly --outDir types"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^3.1.2",
"@tsconfig/svelte": "^5.0.6",
"sass": "^1.95.0",
"svelte": "^4.2.20",
"svelte-check": "^4.3.4",
"svelte-preprocess": "^6.0.3",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"vite": "^5.4.21",
"vite-plugin-css-injected-by-js": "^3.5.2"
}
}