-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.7 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
{
"name": "back-end-project-week",
"version": "1.0.0",
"description": "This week you will build a backend for a note taking app called \"Lambda Notes\".",
"main": "server.js",
"engines": {
"node": "10.2.1"
},
"scripts": {
"mini-test": "jest",
"test": "jest --forceExit --detectOpenHandles --runInBand",
"test:watch": "jest --watch --runInBand",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand --forceExit",
"start": "node server.js",
"dev": "nodemon server.js",
"db": "knex migrate:rollback & knex migrate:latest & knex seed:run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kamry-bowman/back-end-project-week.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/kamry-bowman/back-end-project-week/issues"
},
"homepage": "https://github.com/kamry-bowman/back-end-project-week#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"connect-session-knex": "^1.4.0",
"cors": "^2.8.4",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"express-flash": "0.0.2",
"express-session": "^1.15.6",
"faker": "^4.1.0",
"helmet": "^3.13.0",
"knex": "^0.15.2",
"morgan": "^1.9.1",
"passport": "^0.4.0",
"passport-google-oauth": "^1.0.0",
"passport-local": "^1.0.0",
"pg": "^7.4.3",
"supertest": "^3.1.0"
},
"devDependencies": {
"acorn": "^6.0.4",
"babel-core": "^6.26.3",
"babel-jest": "^23.6.0",
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"jest": "^23.6.0",
"lodash": "^4.17.11",
"nodemon": "^1.18.8",
"regenerator-runtime": "^0.13.1"
}
}