-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.42 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
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "koa-sequelize-boilerplate",
"description": "A boilerplate for koa v2 using sequelize",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/nrfreudenberg/koa-sequelize-boilerplate"
},
"keywords": [
"koa",
"sequelize",
"eslint",
"prettier",
"postgresql"
],
"main": "index.js",
"license": "MIT",
"author": {
"name": "Nicolas Freudenberg",
"email": "nrfreudenberg@uc.cl"
},
"contributors": [
{
"name": "Tomas Freudenberg",
"email": "tefreudenberg@uc.cl"
}
],
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js"
},
"dependencies": {
"bcrypt": "^3.0.6",
"dotenv": "^6.2.0",
"jsonwebtoken": "^8.5.1",
"koa": "^2.6.2",
"koa-body": "^4.0.4",
"koa-cors": "0.0.16",
"koa-helmet": "^4.0.0",
"koa-logger": "^3.2.0",
"koa-router": "^7.4.0",
"koa-static": "^5.0.0",
"pg": "^7.7.1",
"pg-hstore": "^2.3.2",
"sequelize": "^5.3.0",
"sequelize-cli": "^5.4.0"
},
"devDependencies": {
"eslint": "^5.10.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"nodemon": "^1.18.8",
"prettier": "^1.15.3"
},
"engines": {
"node": "^11.2.0",
"yarn": "^1.12.3"
}
}