-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.43 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
{
"name": "koa-starter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node src/index.js",
"start-dev": "npm run db:initialize && nodemon src/index.js",
"db:latest": "knex migrate:latest",
"db:rollback": "knex migrate:rollback",
"db:seed": "knex seed:run",
"db:initialize": "npm run db:rollback && npm run db:latest && npm run db:seed",
"lint": "eslint src",
"precommit": "lint-staged",
"test": "jest src --runInBand --noStackTrace --forceExit",
"test:watch": "npm run test -- --watch",
"reset": "rm -rf node_modules/ && npm prune && yarn cache clean"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "1.0.3",
"dotenv": "4.0.0",
"knex": "0.13.0",
"koa": "2.3.0",
"koa-body": "2.3.0",
"koa-bouncer": "6.0.0",
"koa-helmet": "3.2.0",
"koa-logger": "3.0.1",
"koa-router": "7.2.1",
"koa-send": "4.1.0",
"pg": "7.3.0",
"request": "2.81.0",
"request-promise": "4.2.1",
"uuid": "3.1.0"
},
"devDependencies": {
"babel-jest": "21.0.0",
"eslint": "4.6.1",
"eslint-plugin-react-app": "1.0.2",
"husky": "0.14.3",
"jest": "21.0.1",
"lint-staged": "4.1.0",
"nodemon": "1.12.0",
"prettier": "1.6.1",
"supertest": "3.0.0"
},
"lint-staged": {
"src/**/*.js": [
"prettier --write --print-width 100 --single-quote --trailing-comma es5",
"git add"
]
}
}