-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.61 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
{
"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": "^1.1.0",
"@tsconfig/svelte": "^3.0.0",
"sass": "^1.56.1",
"svelte": "^3.52.0",
"svelte-check": "^2.9.2",
"svelte-preprocess": "^4.10.7",
"tslib": "^2.4.0",
"typescript": "^4.6.4",
"vite": "^3.2.3",
"vite-plugin-css-injected-by-js": "^2.1.1"
}
}