forked from yomugames/junon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 773 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 773 Bytes
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
{
"name": "junon",
"scripts": {
"server": "nodemon --inspect start_server.js",
"client": "npm run client --workspace packages/junon-io",
"serveronly": "npm run dev --workspace packages/junon-io",
"matchmaker": "npm run start --workspace packages/junon-matchmaker",
"client:build": "npm run client:build --workspace packages/junon-io",
"db:setup": "npm run db:setup --workspace packages/junon-common"
},
"workspaces": [
"packages/*"
],
"nodemonConfig": {
"ext": "js, json, proto"
},
"dependencies": {
"perlin-noise": "^0.0.1",
"sharp": "^0.33.1",
"tough-cookie": "^4.1.3"
},
"devDependencies": {
"gulp-connect": "^5.7.0",
"gulp-jshint": "^2.1.0",
"jshint": "^2.13.6",
"lodash": "^4.18.1"
}
}