-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.13 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
{
"name": "node-rest-db-template",
"version": "0.0.1",
"description": "Template for Node.js REST API with database / ORM as storage",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "NODE_ENV=apiDev REST_DB_LOGGING=true npm run start-dev",
"lint": "eslint index.js config/*.js controller/*.js model/*.js route/*.js swagger/*.js",
"start-dev": "nodemon index.js",
"start": "node index.js",
"test": "npm run lint && mocha test/test.spec.js --exit"
},
"keywords": [
"REST",
"API",
"Server",
"Database",
"ORM"
],
"author": "C. Mayer (meggsimum)",
"license": "BSD-2-Clause",
"dependencies": {
"express": "^4.18.1",
"pg": "^8.8.0",
"sequelize": "^6.23.0",
"sqlite3": "^5.1.1",
"swagger-jsdoc": "^6.2.5",
"swagger-ui-express": "^4.5.0"
},
"devDependencies": {
"eslint": "^8.23.1",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-standard": "^5.0.0",
"mocha": "^10.0.0",
"nodemon": "^2.0.20",
"supertest": "^6.2.4"
}
}