-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1.01 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
{
"name": "econtent",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start-dev": "node_modules/babel-watch/babel-watch.js index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon --exec babel-node index.js"
},
"author": "Masoud Tavakkoli @promasoud",
"repository": {
"directory": "",
"type": "git",
"url": "git@github.com:ProMasoud/koa-sequelize-boilerplate.git"
},
"license": "MIT",
"dependencies": {
"@hapi/boom": "^9.1.0",
"@hapi/joi": "^17.1.1",
"@koa/cors": "^3.1.0",
"@koa/router": "^9.0.1",
"babel-watch": "^7.0.0",
"dotenv": "^8.2.0",
"jsonwebtoken": "latest",
"koa": "^2.12.0",
"koa-bodyparser": "^4.3.0",
"koa-jwt": "^4.0.0",
"pg": "^8.2.1",
"pg-hstore": "^2.3.3",
"sequelize": "^5.21.12",
"sequelize-cli": "^5.5.1"
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/node": "^7.10.1",
"@babel/preset-env": "^7.10.2"
}
}