-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 935 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 935 Bytes
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
{
"name": "project-showcase",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"aws-sdk": "^2.943.0",
"connect-pg-simple": "^6.2.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"knex": "^0.95.1",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"nodemon": "^2.0.7",
"objection": "^2.2.14",
"passport": "^0.4.1",
"passport-google-oauth20": "^2.0.0",
"pg": "^8.5.1"
},
"scripts": {
"seed": "npx knex seed:run --knexfile ./db/knexfile.js",
"make-seed": "npx knex seed:make dev --knexfile ./db/knexfile.js",
"migrate": "npx knex migrate:latest --knexfile ./db/knexfile.js",
"down": "npx knex migrate:down --knexfile ./db/knexfile.js",
"start": "nodemon index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Vighnesh Kulkarni",
"license": "ISC"
}