forked from foxfriends/root
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "root",
"version": "1.0.0",
"description": "Play Root online with friends. Original board game by Cole Wehrle, with art by Kyle Ferrin",
"main": "server/index.js",
"type": "module",
"scripts": {
"watch": "parcel watch client/index.html --no-hmr --no-cache",
"build": "tsc -p server",
"start": "parcel build client/index.html; tsc -p server; node server/index.js",
"serve": "node server/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OinkIguana/root.git"
},
"keywords": [
"boardgame",
"board",
"game",
"root",
"play",
"online",
"multiplayer"
],
"author": "Cameron Eldridge",
"license": "ISC",
"bugs": {
"url": "https://github.com/OinkIguana/root/issues"
},
"homepage": "https://github.com/OinkIguana/root#readme",
"devDependencies": {
"@types/fluent": "^0.11.0",
"@types/koa": "^2.0.48",
"@types/koa-compress": "^2.0.9",
"@types/koa-mount": "^3.0.1",
"@types/koa-static": "^4.0.1",
"@types/node": "^12.0.0",
"@types/uuid": "^3.4.4",
"autoprefixer": "^9.5.1",
"parcel-bundler": "^1.12.3",
"parcel-plugin-svelte": "^3.0.0",
"svelte": "^3.1.0",
"typescript": "^3.4.5"
},
"dependencies": {
"fluent": "^0.12.0",
"koa": "^2.7.0",
"koa-compress": "^3.0.0",
"koa-mount": "^4.0.0",
"koa-static": "^5.0.0",
"koa-upgrade": "^1.0.1",
"prng": "0.0.1",
"tslib": "^1.9.3",
"uuid": "^3.3.2"
},
"browserslist": [
"last 1 firefox version",
"last 1 chrome version"
],
"svelte": {
"compilerOptions": {
"css": false
}
}
}