-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.16 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
{
"name": "canada-eh-api-ts",
"version": "1.0.0",
"description": "",
"main": "build/index.js",
"scripts": {
"start": "node .",
"build": "tsc",
"dev": "nodemon",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint src/** --fix",
"unit": "jest",
"docker:start": "docker-compose up -d",
"docker:stop": "docker-compose stop",
"unit:coverage": "jest --collect-coverage",
"prisma:init": "npx prisma init",
"prisma:introspect": "npx prisma introspect",
"prisma:generate": "npx prisma generate"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@prisma/cli": "^2.8.0",
"@types/cors": "^2.8.7",
"@types/express": "^4.17.7",
"@types/jest": "^26.0.12",
"@types/morgan": "^1.9.1",
"@types/node": "^14.6.2",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"eslint": "^7.9.0",
"jest": "^26.4.2",
"nodemon": "^2.0.4",
"ts-jest": "^26.3.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"dependencies": {
"@prisma/client": "^2.8.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"morgan": "^1.10.0"
}
}