-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.42 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
51
52
53
54
{
"name": "awd-site",
"version": "1.0.0",
"description": "The website for Aggie Web Developers.",
"main": "app.js",
"scripts": {
"start": "nodemon app.js --watch routes --watch middleware --watch app.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint \"{views,public,routes,middleware,email}/**/*.js\"",
"prettier": "prettier \"**/*.{js,css}\"",
"verify": "yarn prettier --check && yarn lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cdconn00/awd-website.git"
},
"author": "Aggie Web Developers",
"license": "ISC",
"bugs": {
"url": "https://github.com/cdconn00/awd-website/issues"
},
"engines": {
"node": "^14.0.0"
},
"homepage": "https://github.com/cdconn00/awd-website#readme",
"dependencies": {
"aws-sdk": "^2.814.0",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"ejs": "^3.1.3",
"express": "^4.17.1",
"express-flash": "0.0.2",
"express-session": "^1.17.1",
"method-override": "^3.0.0",
"moment": "^2.27.0",
"moment-timezone": "^0.5.31",
"mssql": "^6.2.0",
"multer": "^1.4.2",
"node-fetch": "^2.6.1",
"node-schedule": "^1.3.2",
"nodemon": "^2.0.12",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"uuid": "^3.4.0"
},
"devDependencies": {
"eslint": "^7.4.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.0.5"
}
}