-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.24 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
50
51
{
"name": "gamestats-backend",
"jest": {
"testEnvironment": "node",
"verbose": false
},
"version": "0.0.1",
"description": "Backend for gamestats",
"main": "app.js",
"scripts": {
"start": "NODE_ENV=production node app.js",
"test": "NODE_ENV=test jest --watchAll --env node --runInBand",
"watch": "NODE_ENV=development nodemon app.js",
"heroku-postbuild": "cd frontend && npm install && npm run build",
"redis": "redis-server"
},
"repository": {
"type": "git",
"url": "https://github.com/msaari/gamestats-backend.git"
},
"engines": {
"node": "12.x"
},
"author": "Mikko Saari",
"license": "MIT",
"dependencies": {
"async-redis": "^2",
"axios": "^0.28.0",
"bcrypt": "^5.0.1",
"dayjs": "^1.10.4",
"dotenv": "^8.2.0",
"fast-xml-parser": "^4.4.1",
"jsonwebtoken": "^9.0.0",
"koa": "^2.13.0",
"koa-bodyparser": "^4.3.0",
"koa-jwt": "^4.0.0",
"koa-logger": "^3.2.1",
"koa-router": "^9.1.0",
"koa-static": "^5.0.0",
"md5": "^2.2.1",
"mongoose": "^8",
"request": "^2.88.2",
"request-promise": "^4.2.6"
},
"devDependencies": {
"jest": "^29.7.0",
"json-server": "^0.17.1",
"nodemon": "^2.0.20",
"supertest": "^4.0.2"
}
}