-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.77 KB
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
{
"name": "let-s-get-pizza-be",
"version": "1.0.0",
"description": "To get the server running locally:",
"main": "index.js",
"scripts": {
"server": "nodemon index.js",
"start": "node index.js",
"test": "cross-env NODE_ENV=testing jest --runInBand --config ./jest.config.js --watchAll --verbose",
"coverage": "cross-env NODE_ENV=testing jest --runInBand --coverage --detectOpenHandles --forceExit|| true",
"migrate": "knex migrate:latest",
"unmigrate": "knex migrate:rollback",
"seed": "knex seed:run",
"docker-start": "docker-compose up -d",
"docker-stop": "docker-compose down",
"docker-seed": "docker exec -d plza-server sh -c 'npm run seed'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lambda-School-Labs/let-s-get-pizza-be.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Lambda-School-Labs/let-s-get-pizza-be/issues"
},
"homepage": "https://github.com/Lambda-School-Labs/let-s-get-pizza-be#readme",
"dependencies": {
"axios": "^0.19.0",
"bcrypt": "^3.0.6",
"bcryptjs": "^2.4.3",
"cloudinary": "^1.17.0",
"codeclimate-test-reporter": "^0.5.1",
"cors": "^2.8.5",
"cross-env": "^6.0.3",
"datauri": "^2.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.0",
"geoip-lite": "^1.3.8",
"helmet": "^3.21.2",
"jest": "^24.9.0",
"jsonwebtoken": "^8.5.1",
"knex": "^0.20.1",
"knex-cleaner": "^1.3.0",
"multer": "^1.4.2",
"mysql2": "^2.0.0",
"nodemon": "^1.19.4",
"passport": "^0.4.0",
"passport-auth0": "^1.2.1",
"pg": "^7.12.1",
"postgresql": "0.0.1",
"sqlite3": "^4.1.0",
"supertest": "^4.0.2"
},
"directories": {
"test": "tests"
}
}