-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.36 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
{
"name": "pass-lock",
"version": "1.0.0",
"description": "",
"main": "server.js",
"engines": {
"node": "14.x"
},
"scripts": {
"start": "node server.js",
"start:prod": "node server.js",
"start:dev": "concurrently \"nodemon --ignore 'client/*'\" \"npm run client\"",
"client": "cd client && npm run start",
"install": "cd client && npm install",
"build": "cd client && npm run build",
"heroku-postbuild": "npm run build",
"migrate": "knex migrate:latest",
"unmigrate": "knex migrate:down",
"unmigrate:all": "knex migrate:rollback",
"db": "/Applications/Postgres.app/Contents/Versions/13/bin/psql -p5432 \"passlock\" "
},
"repository": {
"type": "git",
"url": "git+https://github.com/scaredofseagles/Pass-Lock.git"
},
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^6.0.0",
"nodemon": "^1.18.7"
},
"bugs": {
"url": "https://github.com/scaredofseagles/Pass-Lock/issues"
},
"homepage": "https://github.com/scaredofseagles/Pass-Lock#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"if-env": "^1.0.4",
"knex": "^0.95.1",
"moment": "^2.29.1",
"moment-timezone": "^0.5.33",
"path": "^0.12.7",
"pg": "^8.5.1",
"puppeteer": "^8.0.0",
"uuid": "^8.3.2"
}
}