-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 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
43
44
{
"name": "reservas",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"check": "npm run format && npm run lint",
"dev": "nodemon index.js",
"format": "prettier --write \"**/*.+(js|yml|yaml|json)\"",
"lint": "eslint .",
"start": "node index.js",
"test": "NODE_ENV=test jest'",
"dbsync": "node scripts/dbsync.js"
},
"devDependencies": {
"eslint": "5.16.0",
"eslint-config-prettier": "4.3.0",
"eslint-config-standard": "12.0.0",
"eslint-plugin-import": "2.17.2",
"eslint-plugin-jest": "22.5.1",
"eslint-plugin-node": "9.0.1",
"eslint-plugin-prettier": "3.1.0",
"eslint-plugin-promise": "4.1.1",
"eslint-plugin-standard": "4.0.0",
"husky": "2.3.0",
"nodemon": "1.19.0",
"prettier": "1.17.1"
},
"dependencies": {
"@koa/cors": "2.2.3",
"dotenv": "8.0.0",
"joi": "14.3.1",
"koa": "2.7.0",
"koa-bodyparser": "4.2.1",
"koa-compress": "3.0.0",
"koa-helmet": "4.1.0",
"koa-logger": "3.2.0",
"koa-router": "7.4.0",
"pg": "^8.4.1",
"pg-hstore": "^2.3.3",
"sequelize": "^6.3.5",
"uuid": "3.3.2"
}
}