-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.54 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": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"dev": "tsnd --watch \"./src/**\" --transpile-only src/server.ts",
"start": "tsc && npm run dev"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcryptjs": "2.4.2",
"@types/chai": "4.3.0",
"@types/chai-http": "4.2.0",
"@types/cors": "^2.8.12",
"@types/express": "4.17.13",
"@types/jsonwebtoken": "8.5.6",
"@types/mocha": "9.1.0",
"@types/node": "16.11.7",
"@types/sequelize": "4.28.10",
"@types/sinon": "10.0.11",
"@types/validator": "13.6.6",
"@typescript-eslint/eslint-plugin": "5.3.1",
"@typescript-eslint/parser": "5.3.1",
"chai": "4.3.6",
"chai-http": "4.3.0",
"eslint": "7.32.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "15.0.0",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-mocha": "9.0.0",
"eslint-plugin-sonarjs": "0.10.0",
"mocha": "9.2.1",
"nodemon": "^1.12.1",
"nyc": "15.1.0",
"prisma": "^5.2.0",
"sequelize-cli": "6.3.0",
"sinon": "13.0.1",
"ts-node": "^5.0.1",
"ts-node-dev": "1.1.8",
"typescript": "^5.1.3"
},
"dependencies": {
"@prisma/client": "^4.16.1",
"bcryptjs": "2.4.3",
"cors": "^2.8.5",
"express": "4.17.1",
"express-async-errors": "3.1.1",
"jest": "27.4.3",
"joi": "^17.9.2",
"jsonwebtoken": "8.5.1",
"mysql2": "2.3.3"
}
}