-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 984 Bytes
/
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
{
"name": "spring-integration-progress-bar",
"private": true,
"version": "1.0.0",
"type": "module",
"workspaces": [
"src/main/svelte",
"src/main/typescript",
"src/test/typescript"
],
"scripts": {
"test": "npm run test --workspace=src/test/typescript",
"dev": "npm run dev --workspace=src/main/svelte",
"dev:codespaces": "npm run dev:codespaces --workspace=src/main/svelte",
"build": "npm run build --workspace=src/main/svelte",
"preview": "npm run preview --workspace=src/main/svelte",
"check": "npm run check --tsconfig src/main/svelte/tsconfig.json"
},
"devDependencies": {
"@types/sockjs-client": "^1.5.1",
"@sveltejs/vite-plugin-svelte": "^2.0.2",
"@tsconfig/svelte": "^3.0.0",
"svelte": "^3.55.1",
"svelte-check": "^2.10.3",
"tslib": "^2.5.0",
"typescript": "^4.9.3",
"vite": "^4.1.4",
"vitest": "^0.29.2"
},
"dependencies": {
"sockjs-client": "^1.6.1",
"rxjs": "^7.8.0"
}
}