forked from admataz/hundred-players
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.18 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
{
"name": "multiplayer",
"version": "1.0.0",
"description": "",
"main": "app.js",
"directories": {
"test": "test"
},
"scripts": {
"start": "npm run server:start",
"dev": "npm run client:dev",
"build": "npm run client:build",
"server:test": "tap test/**/*.test.js",
"server:start": "fastify start -l info app.js",
"server:dev": "fastify start -w -l info -P app.js",
"client:build": "rollup -c",
"client:dev": "rollup -c -w"
},
"keywords": [],
"author": "Adam Davis <[email protected]>",
"license": "ISC",
"dependencies": {
"dotenv": "^8.2.0",
"fastify": "^2.0.0",
"fastify-autoload": "^1.0.0",
"fastify-cli": "^1.3.0",
"fastify-formbody": "^3.1.0",
"fastify-jwt": "^1.2.0",
"fastify-plugin": "^1.5.0",
"fastify-static": "^2.5.0",
"pusher": "^3.0.0",
"pusher-js": "^5.0.2",
"twitter": "^1.7.1"
},
"devDependencies": {
"rollup": "^1.12.0",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-livereload": "^1.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-svelte": "^5.0.3",
"rollup-plugin-terser": "^5.1.2",
"svelte": "^3.0.0",
"tap": "^14.10.1"
}
}