-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.69 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
{
"name": "powerzone-inventory",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint --ext .js --ignore-path .gitignore .",
"lint-fix": "eslint --ext .js --ignore-path .gitignore --fix .",
"test": "nyc mocha --require esm --exit --timeout 10000",
"test-report": "nyc --reporter html mocha --require esm --exit --timeout 10000 --reporter mochawesome"
},
"nyc": {
"exclude": [
"models",
"test"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/STSWENG-T1-AY2122-AWS-CodeBuild/powerzone-inventory.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/STSWENG-T1-AY2122-AWS-CodeBuild/powerzone-inventory/issues"
},
"homepage": "https://github.com/STSWENG-T1-AY2122-AWS-CodeBuild/powerzone-inventory#readme",
"dependencies": {
"@babel/eslint-parser": "^7.16.5",
"bcrypt": "^5.0.1",
"connect-mongo": "^3.2.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-handlebars": "^6.0.1",
"express-session": "^1.17.2",
"express-validator": "^6.13.0",
"gridfs-stream": "^1.1.1",
"hbs": "^4.2.0",
"jquery": "^3.6.0",
"mongodb": "^4.2.0",
"mongoose": "^6.0.13",
"multer": "^1.4.3",
"multer-gridfs-storage": "^5.0.2",
"nocache": "^3.0.1",
"nodemailer": "^6.7.1"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-jquery": "^2.1.0",
"deep-equal-in-any-order": "^1.1.15",
"eslint": "^8.6.0",
"eslint-config-google": "^0.14.0",
"esm": "^3.2.25",
"jsdom": "^18.1.1",
"mocha": "^9.1.3",
"mocha-jsdom": "^2.0.0",
"mochawesome": "^7.0.1",
"nyc": "^15.1.0",
"sinon": "^12.0.1"
}
}