-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.01 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
{
"name": "backend",
"version": "1.0.0",
"description": "Backend for mu map",
"main": "index.js",
"scripts": {
"test": "cross-env NODE_ENV=test jest --runInBand --silent",
"start": "cross-env NODE_ENV=dev nodemon ./src/server.ts",
"start-migrate": "cross-env NODE_ENV=dev MIGRATE=true nodemon ./src/server.ts",
"build": "tsc --project ./"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.8",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.6",
"@types/validator": "^13.1.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"firebase-admin": "^9.5.0",
"nodemon": "^2.0.6",
"pg": "^8.4.2",
"pg-hstore": "^2.3.3",
"sequelize": "^6.3.5",
"sequelize-mock": "^0.10.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
},
"devDependencies": {
"@types/cors": "^2.8.9",
"cross-env": "^7.0.2",
"jest": "^26.6.3",
"supertest": "^6.0.1",
"ts-jest": "^26.4.3"
}
}