-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.1 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "backend",
"version": "1.0.0",
"description": "OverRun api",
"main": "dist/server.js",
"scripts": {
"prebuild": "eslint . --ext .ts",
"build": "tsc",
"prestart": "npm run build",
"dev": "nodemon --watch src src/server.ts",
"start": "tsnd --respawn src/server.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/24-heures-insa/overrun/backend.git"
},
"type": "commonjs",
"keywords": [
"race",
"races",
"24_h",
"courses",
"course"
],
"author": "francois.rault",
"license": "ISC",
"bugs": {
"url": "https://gitlab.com/24-heures-insa/overrun/backend/issues"
},
"homepage": "https://gitlab.com/24-heures-insa/overrun/backend#readme",
"dependencies": {
"@prisma/client": "^4.12.0",
"@types/axios": "^0.14.0",
"@types/bcrypt": "^5.0.0",
"@types/express-fileupload": "^1.2.1",
"@types/express-validator": "^3.0.0",
"@types/imagemagick": "^0.0.31",
"@types/inquirer": "^9.0.3",
"@types/jsonwebtoken": "^9.0.0",
"@types/nodemailer": "^6.4.4",
"axios": "^1.3.4",
"bcrypt": "^5.0.1",
"body-parser": "^1.20.2",
"express": "^4.17.1",
"express-fileupload": "^1.2.1",
"express-validator": "^6.15.0",
"imagemagick": "^0.1.3",
"inquirer": "^9.1.5",
"jsonwebtoken": "^8.5.1",
"node-dev": "^8.0.0",
"nodemailer": "^6.9.1",
"nodemon": "^2.0.22",
"prisma": "^4.12.0",
"readline": "^1.3.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^4.6.2",
"ts-node-dev": "^2.0.0"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^18.15.11",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"dotenv": "^16.0.3",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.7",
"ts-node": "^10.4.0",
"typescript": "^5.0.3"
}
}