forked from ably-labs/github-commit-visualizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.08 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
{
"name": "github-commit-visualizer",
"version": "1.0.0",
"description": "",
"type": "module",
"scripts": {
"prestart": "cd api && npm install",
"start": "netlify dev -c \"npm run dev:app\" --targetPort 8080",
"dev:app": "vite",
"dev:api": "npm run start --prefix api",
"test": "vitest run",
"check": "svelte-check --tsconfig ./tsconfig.json",
"start:azure": "run-p dev:api dev:app",
"build:azure": "npx vite build",
"build:netlify": "npx vite build && cd api && npm i && npm run build"
},
"author": "",
"license": "ISC",
"dependencies": {
"@ably-labs/react-hooks": "^2.0.6",
"d3": "^7.6.1",
"vis-data": "^7.1.4",
"vis-network": "^9.1.2"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^1.0.1",
"@tsconfig/svelte": "^3.0.0",
"@types/d3": "^7.4.0",
"npm-run-all": "^4.1.5",
"svelte": "^3.49.0",
"svelte-check": "^2.8.0",
"svelte-preprocess": "^4.10.7",
"tslib": "^2.4.0",
"typescript": "^4.6.4",
"vite": "^3.0.4",
"vitest": "^0.19.0"
},
"engines": {
"node": ">=16.0.0"
}
}