forked from nonbots/nhanify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.29 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
{
"name": "nhanify",
"version": "1.0.0",
"description": "",
"main": "app.js",
"directories": {
"lib": "lib"
},
"scripts": {
"prettier": "npx prettier . --write",
"test": "jest --verbose --detectOpenHandles",
"start": "nodemon --env-file=.env app.js",
"make-db": "psql -d nhanify < lib/schema.sql && psql -d nhanify < lib/seed.sql",
"make-schema": "psql -d nhanify < lib/schema.sql",
"make-seed": "psql -d nhanify < lib/seed.sql",
"start-ec2": "ssh nhanify 'sudo systemctl start myserver.service'",
"stop-ec2": "ssh nhanify 'sudo systemctl stop myserver.service'",
"status-ec2": "ssh nhanify 'sudo systemctl status myserver.service'",
"prepare": "husky"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"connect-loki": "^1.2.0",
"express": "^4.18.2",
"express-flash": "^0.0.2",
"express-session": "^1.18.0",
"express-validator": "^7.1.0",
"pg": "^8.12.0",
"pug": "^3.0.2"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"dotenv": "^16.4.5",
"eslint": "^7.12.1",
"eslint-cli": "^1.1.1",
"husky": "^9.1.6",
"jest": "^29.7.0",
"morgan": "^1.10.0",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"prettier-plugin-sql": "^0.18.0"
}
}