-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.1 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
{
"name": "usgov-regs",
"version": "1.1.0",
"private": "true",
"description": "A little app to help navigate the rules, regulations, and comments for the US Government",
"engines": {
"node": "18.x"
},
"main": "src/index.js",
"scripts": {
"postinstall": "cp -r node_modules/uswds/dist static/uswds",
"start": "node .",
"watch": "./node_modules/nodemon/bin/nodemon.js -e js,pug,json ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/jakerella/usgov-regs.git"
},
"author": "Jordan Kasper",
"license": "MIT",
"dependencies": {
"connect-redis": "^6.1.3",
"dotenv": "^16.0.1",
"express": "^4.21.0",
"express-session": "^1.17.1",
"form-data": "^4.0.0",
"mailgun.js": "^8.0.0",
"node-fetch": "^2.6.7",
"pg": "^8.5.1",
"pug": "^3.0.3",
"redis": "^3.1.2",
"sequelize": "^6.29.0",
"uswds": "^2.12.0",
"uuid": "^8.3.2",
"winston": "^3.3.3"
},
"devDependencies": {
"nodemon": "^2.0.12"
}
}