-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.31 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": "express-rest-api",
"version": "1.0.0",
"description": "Express REST API template",
"main": "./src/start.ts",
"engines": {
"node": ">=16.14.2"
},
"scripts": {
"build": "tsc .",
"dev": "nodemon --watch src --exec 'ts-node' .",
"eslint": "",
"test": "jest"
},
"nodemonConfig": {
"ext": "ts, js, json"
},
"author": "Ricardo Alvarez-Correa",
"license": "ISC",
"dependencies": {
"@types/uuid": "^8.3.4",
"@types/uuid-validate": "^0.0.1",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"helmet": "^5.0.2",
"http-status": "^1.5.1",
"jest": "^27.5.1",
"swagger-jsdoc": "^6.2.0",
"swagger-ui-express": "^4.3.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.2",
"@types/cors": "^2.8.12",
"@types/eslint": "^8.4.1",
"@types/express": "^4.17.13",
"@types/nodemon": "^1.19.1",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"eslint": "^8.13.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"nodemon": "^2.0.15",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
}
}