-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.33 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": "api-ts_express",
"version": "1.0.0",
"description": "API lesson",
"main": "index.js",
"type": "commonjs",
"scripts": {
"start": "node ./dist/main.js",
"dev": "nodemon",
"build": "tsc",
"lint": "eslint ./src/**",
"lint:fix": "eslint ./src/** --fix",
"test": "jest",
"test:e2e": "jest --config jest.e2e.config.ts"
},
"author": "Yan Bortsov",
"license": "ISC",
"dependencies": {
"@prisma/client": "^4.12.0",
"@types/bcryptjs": "^2.4.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"inversify": "^6.0.1",
"jsonwebtoken": "^9.0.0",
"reflect-metadata": "^0.1.13",
"tslog": "^4.7.5"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^29.5.0",
"@types/jsonwebtoken": "^9.0.1",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"prettier": "^2.8.7",
"prisma": "^4.12.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}