-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 1.15 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
{
"name": "hexawar.io",
"version": "1.0.0",
"description": "A multiplayer browser game of land capture.",
"main": "server/main.js",
"type": "module",
"scripts": {
"fstart": "forever start server/main.js",
"fstop": "forever stop server/main.js",
"start": "node server/main.js",
"dev": "nodemon server/main.js",
"build": "npx tsc",
"devBuild": "npx tsc -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/angeluriot/Hexawar.io.git"
},
"keywords": [
"game",
"multiplayer",
"land capture"
],
"author": "Angel Uriot",
"license": "ISC",
"bugs": {
"url": "https://github.com/angeluriot/Hexawar.io/issues"
},
"homepage": "https://github.com/angeluriot/Hexawar.io#readme",
"dependencies": {
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.6",
"bcrypt": "^5.0.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"forever": "^4.0.3",
"fs": "^0.0.1-security",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.0.14",
"rate-limiter-flexible": "^2.3.6",
"socket.io": "^4.4.0",
"stripe": "^8.217.0",
"typescript": "^4.5.4"
},
"devDependencies": {
"nodemon": "^2.0.15"
}
}