-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.68 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
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "receivingDB",
"version": "0.0.1",
"description": "A searchable, auditable, write-protected receiving log meant to be extended as part of a greater resource-planning design.",
"keywords": [
"mongodb",
"express",
"receiving",
"erp",
"mrp",
"log",
"audit"
],
"homepage": "https://iangoodnight.github.io/receivingDB",
"bugs": "https://github.com/iangoodnight/receivingDB/issues",
"license": "ISC",
"author": "Ian Goodnight <goodnight.ian@gmail.com>",
"main": "./src/bin/www",
"repository": {
"type": "git",
"url": "https://github.com/iangoodnight/receivingDB"
},
"scripts": {
"dev": "DEBUG=speak-and-spell:* nodemon ./src/bin/www",
"start": "node ./src/bin/www",
"prepare": "husky install",
"test": "jest --collect-coverage"
},
"dependencies": {
"bcrypt": "^5.0.1",
"connect-mongo": "^4.4.1",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"express": "~4.16.1",
"express-handlebars": "^5.3.0",
"express-session": "^1.17.2",
"hbs": "^4.1.2",
"helmet": "^4.6.0",
"http-errors": "~1.6.3",
"mongoose": "^5.12.4",
"mongoose-sequence": "^5.3.1",
"morgan": "~1.9.1",
"node-sass-middleware": "0.11.0",
"passport": "^0.4.1",
"passport-local": "^1.0.0"
},
"devDependencies": {
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"nodemon": "^2.0.7",
"prettier": "2.2.1"
},
"engines": {
"node": "14.x",
"npm": "6.x"
},
"private": false,
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}