-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
36 lines (36 loc) · 1.08 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
{
"name": "nodejs-mysql-boilerplate",
"version": "1.0.0",
"description": "App with a very neat and modular structure to start you next nodejs project.",
"main": "index.js",
"scripts": {
"start": "nodemon --exec babel-node --presets=es2015 index.js",
"debug": "DEBUG=knex:bindings nodemon --inspect --exec babel-node --presets=es2015 index.js",
"migrate-up": "DEBUG=knex:tx knex migrate:latest",
"migrate-down": "DEBUG=knex:tx knex migrate:rollback"
},
"author": "Raghav Garg <raghavgarg1257@gmail.com>",
"repository": {
"type": "git",
"url": "git://github.com/raghavgarg1257/nodejs-mysql-boilerplate"
},
"license": "ISC",
"dependencies": {
"body-parser": "^1.15.2",
"bookshelf": "^0.10.3",
"checkit": "^0.7.0",
"dotenv": "^4.0.0",
"express": "^4.14.0",
"jsonwebtoken": "^8.0.0",
"knex": "^0.12.6",
"mysql": "^2.13.0",
"validator": "^6.2.1"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-preset-env": "^1.1.5",
"babel-preset-latest": "^6.22.0",
"morgan": "^1.7.0"
}
}