-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.75 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
{
"name": "bootcamp-roland",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"lint-check": "eslint \"**/*.js\" --ignore-pattern node_modules/",
"test-web": "npm run migrate-test-db && LOG_LEVEL=silent NODE_ENV=test mocha './{!(node_modules)/**/,}*.spec.js' --exit",
"migrate-db": "knex migrate:latest",
"migrate-test-db": "NODE_ENV=test npm run migrate-down && NODE_ENV=test npm run migrate-up ",
"migrate-up": "knex migrate:up",
"migrate-down": "knex migrate:down",
"seed-db": "knex seed:run",
"seed-test-db": "NODE_ENV=test knex seed:run"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint-check",
"pre-push": "npm run test-web"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/RisingStack/bootcamp-roland.git"
},
"author": "Roland",
"license": "ISC",
"bugs": {
"url": "https://github.com/RisingStack/bootcamp-roland/issues"
},
"homepage": "https://github.com/RisingStack/bootcamp-roland#readme",
"dependencies": {
"bcrypt": "5.0.0",
"cross-fetch": "3.0.6",
"dotenv-safe": "8.2.0",
"express": "4.17.1",
"express-pino-logger": "5.0.0",
"graphql": "15.3.0",
"graphql-request": "3.1.0",
"joi": "17.2.1",
"jsonwebtoken": "8.5.1",
"knex": "0.21.5",
"lodash": "4.17.20",
"pg": "8.3.3",
"pino": "6.7.0",
"pino-pretty": "4.3.0"
},
"devDependencies": {
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"chai-http": "4.3.0",
"eslint": "7.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "2.22.1",
"husky": "4.3.0",
"mocha": "8.1.3",
"nock": "13.0.4",
"nodemon": "2.0.4"
}
}