forked from reezy24/exercise-app-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.27 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.27 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
{
"name": "exercise-app-backend",
"version": "1.0.0",
"type": "module",
"description": "",
"scripts": {
"migrate:production": "knex migrate:latest --env production",
"migrate": "knex migrate:latest",
"dev": "cross-env NODE_ENV=development USE_LOCAL_DB=true PORT=3000 nodemon local.js",
"dev:vercel": "vercel dev",
"build": "echo 'No build needed for plain JS'",
"vercel-build": "npm run migrate:production && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SimoSultan/exercise-app-backend.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/SimoSultan/exercise-app-backend/issues"
},
"homepage": "https://github.com/SimoSultan/exercise-app-backend#readme",
"dependencies": {
"connect-pg-simple": "^10.0.0",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.21.2",
"express-session": "^1.17.3",
"knex": "^3.1.0",
"passport": "^0.6.0",
"passport-google-oauth2": "^0.2.0",
"passport-google-oauth20": "^2.0.0",
"pg": "^8.13.1"
},
"engines": {
"node": "20.14.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^5.2.1",
"cross-env": "^7.0.3",
"nodemon": "^3.1.7",
"prettier": "^3.4.2"
}
}