-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.09 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
64
65
66
67
68
69
70
71
72
73
74
{
"name": "todo_api",
"version": "1.0.0",
"description": "Express API ES6 Starter",
"main": "server.js",
"scripts": {
"start": "node dist",
"precommit": "lint-staged",
"prestart": "npm run build",
"lint": "eslint src test; exit 0",
"lint:fix": "eslint src test --fix; exit 0",
"seed": "knex seed:run --knexfile src/knexfile.js",
"build": "rimraf dist && babel src -D --out-dir dist",
"migrate": "knex migrate:latest --knexfile src/knexfile.js",
"rollback": "knex migrate:rollback --knexfile src/knexfile.js",
"make:seeder": "knex seed:make --knexfile src/knexfile.js",
"make:migration": "knex migrate:make --knexfile src/knexfile.js",
"test": "NODE_ENV=test jest --forceExit",
"prettify": "prettier --single-quote --print-width 120 --write \"src/**/*.js\" \"test/**/*.js\"",
"start:dev": "nodemon --watch .env --watch src --exec babel-node src --source-maps"
},
"author": "Nicholas Krambousanos",
"license": "MIT",
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"dependencies": {
"body-parser": "^1.18.2",
"bookshelf": "^0.12.1",
"bookshelf-camelcase": "^2.0.1",
"boom": "^7.1.1",
"compression": "^1.7.1",
"cors": "^2.8.4",
"dotenv": "^5.0.0",
"express": "^4.16.2",
"helmet": "^3.10.0",
"http-status-codes": "^1.3.0",
"joi": "^13.1.2",
"knex": "^0.13.0",
"morgan": "^1.9.0",
"pg": "^7.4.1",
"serve-favicon": "^2.4.5",
"swagger-jsdoc": "^1.9.7",
"winston": "^2.4.0",
"winston-daily-rotate-file": "^1.7.2"
},
"keywords": [
"javascript",
"node",
"express",
"es6",
"api"
],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"eslint": "^4.17.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"husky": "^0.14.3",
"jest": "^22.2.1",
"lint-staged": "^6.1.0",
"lodash": "^4.17.5",
"nodemon": "^1.14.12",
"prettier": "1.10.2",
"rimraf": "^2.6.2",
"superagent": "^3.8.2",
"supertest": "^3.0.0"
}
}