generated from plantnet/express-api-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 820 Bytes
/
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
{
"name": "express-api-starter",
"version": "1.0.0",
"description": "A starter for Express api projects",
"license": "MIT",
"type": "module",
"main": "./src/index.js",
"scripts": {
"dev": "nodemon --exec node ./src/index.js",
"test": "cross-env NODE_ENV=test node --watch --test test/",
"lint": "eslint ."
},
"dependencies": {
"axios": "^1.6.7",
"express": "^4.18.2",
"pino-http": "^9.0.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@eslint/js": "^8.56.0",
"@stylistic/eslint-plugin": "^1.5.3",
"cross-env": "^7.0.3",
"dotenv": "^16.4.1",
"eslint": "^8.56.0",
"globals": "^13.24.0",
"nodemon": "^3.0.2",
"supertest": "^6.3.3"
},
"engines": {
"node": "20"
}
}