-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.38 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
{
"name": "isolation-run",
"version": "1.0.0",
"description": "A silly website that helps you keep up your running habit whilst in lockdown/quarantine made using Svelte, Node and WebSockets.",
"main": "index.js",
"scripts": {
"start": "cd backend && node main",
"build": "cd frontend && npm run build",
"setup": "cd frontend && npm install && npm run build && cd ../backend && npm install",
"test": "echo \"Error: no test specified\" && exit 1"
},
"engines": {
"node": "12.16.x"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@rollup/plugin-commonjs": "^11.0.0",
"@rollup/plugin-node-resolve": "^7.0.0",
"rollup": "^1.20.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-livereload": "^1.0.0",
"rollup-plugin-svelte": "^5.0.3",
"rollup-plugin-terser": "^5.1.2",
"svelte": "^3.0.0"
},
"dependencies": {
"express": "^4.17.1",
"sirv-cli": "^0.4.4",
"uuid": "^7.0.2",
"ws": "^7.2.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pjaerr/QuaRUNtine.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Pjaerr/QuaRUNtine/issues"
},
"homepage": "https://github.com/Pjaerr/QuaRUNtine#readme"
}