-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.65 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
52
53
54
55
56
57
58
{
"name": "rest-api-auth-mysql",
"version": "1.0.0",
"main": "src/index.js",
"type": "commonjs",
"scripts": {
"start": "node ./dist/main.js",
"debug": "node --inspect ./dist/main.js",
"dev": "nodemon",
"dev:inspect": "nodemon -e ts,json --exec node --inspect=localhost:9222 -r ts-node/register src/main.ts",
"lint": "eslint ./src/**",
"lint:fix": "eslint ./src/** --fix",
"build": "tsc",
"generate": "prisma generate"
},
"keywords": [],
"author": "Pavel Komissar",
"license": "ISC",
"dependencies": {
"@prisma/client": "^3.15.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-fileupload": "^1.4.0",
"inversify": "^6.0.1",
"jsonwebtoken": "^8.5.1",
"reflect-metadata": "^0.1.13",
"tslog": "^3.3.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/async": "^3.2.13",
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.13",
"@types/express-fileupload": "^1.2.2",
"@types/jest": "^28.1.2",
"@types/jsonwebtoken": "^8.5.8",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^28.1.1",
"nodemon": "^2.0.16",
"prettier": "^2.6.2",
"prisma": "^3.15.2",
"stylelint": "^14.9.1",
"stylelint-config-standard": "^26.0.0",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.1",
"typescript": "^4.7.3"
},
"description": "express"
}