-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 901 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 901 Bytes
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
{
"name": "cano-api",
"version": "1.0.0",
"description": "Canorous api server",
"main": ".src/app.js",
"author": "darekaze",
"license": "MIT",
"scripts": {
"start": "node src/app.js",
"dev": "nodemon --exec \"npm run lint && npm run start\"",
"lint": "eslint \"**/*.js\"",
"seed": "node ./seed"
},
"dependencies": {
"bluebird": "^3.5.4",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.16.4",
"lodash": "^4.17.11",
"morgan": "^1.9.1",
"pg": "^7.10.0",
"pg-hstore": "^2.3.2",
"sequelize": "^5.7.6",
"sqlite3": "^4.0.6"
},
"devDependencies": {
"@types/cors": "^2.8.5",
"@types/express": "^4.16.1",
"@types/morgan": "^1.7.35",
"@types/sequelize": "^4.27.48",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.2",
"nodemon": "^1.18.11"
}
}