-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
63 lines (63 loc) · 1.62 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": "nodejs-boilerplate",
"version": "1.0.0",
"main": "src/app.js",
"author": "Bijaya <[email protected]>",
"license": "MIT",
"scripts": {
"serve": "nodemon --exec babel-node src/server.js",
"build": "babel src --out-dir build",
"knex": "babel-node node_modules/.bin/knex --knexfile src/knexfile.js --env development",
"make:migration": "yarn knex migrate:make",
"migrate": "yarn knex migrate:latest",
"migrate:rollback": "yarn knex migrate:rollback --knexfile src/knexfile.js",
"make:seed": "yarn knex seed:make",
"db:seed": "yarn knex seed:run"
},
"dependencies": {
"body-parser": "^1.19.0",
"chalk": "^4.0.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"knex": "^0.21.1",
"log4js": "^6.2.1",
"morgan": "^1.10.0",
"nodemailer": "^6.4.6",
"objection": "^2.1.3",
"objection-password": "^2.0.0",
"objection-visibility": "^1.0.0",
"path": "^0.12.7",
"pg": "^8.1.0",
"validatorjs": "^3.18.1"
},
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/core": "7.9.6",
"@babel/node": "7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "7.8.3",
"@babel/preset-env": "^7.9.6",
"cross-env": "^7.0.2",
"nodemon": "^2.0.3"
},
"babel": {
"plugins": [
[
"@babel/plugin-proposal-class-properties"
]
],
"presets": [
[
"@babel/preset-env",
{
"modules": "commonjs",
"targets": {
"node": "current"
}
}
]
]
}
}