-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
48 lines (48 loc) · 1.55 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
{
"name": "islandr",
"version": "1.0.0",
"description": "An open-source 2D browser shooter game inspired by surviv.io",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"build-server": "cd server && npm run build",
"build-client": "cd client && npm run build",
"deep-install": "npm i && cd server && npm i && cd ../client && npm i",
"gameserv": "cd server && npm run build && npm start",
"webserv": "npm run build-client && npm run build && node lib/index.js",
"start": "concurrently \"npm run webserv\" \"npm run gameserv\" "
},
"repository": {
"type": "git",
"url": "git+https://github.com/North-West-Wind/islandr.io.git"
},
"author": "NorthWestWind",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/North-West-Wind/islandr.io/issues"
},
"homepage": "https://github.com/North-West-Wind/islandr.io#readme",
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.17",
"@types/mime-types": "^2.1.1",
"@types/node": "^18.15.5",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"concurrently": "^8.2.2",
"eslint": "^8.28.0",
"eslint-plugin-unused-imports": "^2.0.0",
"typescript": "^5.0.2"
},
"dependencies": {
"body-parser": "^1.20.2",
"csv-parser": "^3.0.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"mime-types": "^2.1.35",
"mysql2": "^3.6.0",
"nipplejs": "^0.10.1",
"sqlite3": "^5.1.6"
}
}