-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.08 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
{
"name": "shooterserver",
"version": "1.0.0",
"description": "Server for crypto space invaders game",
"main": "index.js",
"scripts": {
"dev": "nodemon --exec babel-node src/app.js",
"start": "babel-node src/app.js",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wojciech-turek/crypto-space-invaders-server.git"
},
"author": "Wojciech Turek",
"license": "ISC",
"bugs": {
"url": "https://github.com/wojciech-turek/crypto-space-invaders-server/issues"
},
"homepage": "https://github.com/wojciech-turek/crypto-space-invaders-server#readme",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.0.2",
"eth-sig-util": "^3.0.1",
"ethereumjs-util": "^7.1.5",
"ethers": "^5.7.1",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mongoose": "^6.6.1",
"morgan": "^1.10.0",
"uuid": "^9.0.0",
"winston": "^3.8.2",
"@babel/core": "^7.19.1",
"@babel/node": "^7.19.1",
"@babel/preset-env": "^7.19.1"
},
"devDependencies": {
"nodemon": "^2.0.20"
}
}