-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.17 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
{
"name": "airman-coding-challenge-backend",
"version": "1.0.0",
"description": "Airman Backend Coding Challenge",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "npx tsc-watch --onSuccess \"node ./dist/index.js\"",
"test": "./node_modules/.bin/mocha --require ts-node/register ./src/**/*.spec.ts",
"prisma:generate": "npx prisma generate --schema=src/database/prisma/schema.prisma",
"prisma:migrate": "npx prisma migrate dev --schema=src/database/prisma/schema.prisma"
},
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.2.0",
"@types/node": "^14.14.21",
"axios": "^1.4.0",
"date-fns": "^2.30.0",
"dotenv": "^16.1.4",
"express": "^4.18.2",
"node-cron": "^3.0.2",
"reflect-metadata": "^0.1.13",
"ts-node": "^10.8.1",
"typescript": "^4.1.3",
"zod": "^3.22.2"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/express": "^4.17.17",
"@types/mocha": "^10.0.1",
"@types/node-cron": "^3.0.8",
"@types/sinon": "^10.0.15",
"chai": "^4.3.7",
"mocha": "^8.4.0",
"prisma": "^5.0.0",
"sinon": "^15.1.0"
}
}