forked from 100devs/todo-mvc-auth-local
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.46 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.46 KB
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
{
"name": "pretriq",
"version": "1.0.0",
"description": "A full-stack web application that allows users to conduct Driver's Vehicle Inspection Reports digitally. The Pre-trip inspections are stored on MongoDB. Create an account to start your digital paper trail",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"test": "jest",
"test:unit": "jest test/*.test.js --testPathIgnorePatterns=e2e",
"test:e2e:simple": "jest test/e2eSimple.test.js",
"test:e2e:critical": "jest test/e2eCritical.test.js",
"test:e2e:full": "jest test/e2eWithDB.test.js",
"test:e2e:all": "jest test/e2e*.test.js",
"test:all": "jest"
},
"author": "Bobby Asakawa",
"license": "MIT",
"dependencies": {
"bcrypt": "^6.0.0",
"cloudinary": "^2.9.0",
"connect-flash": "^0.1.1",
"connect-mongo": "^6.0.0",
"dotenv": "^17.2.3",
"ejs": "^4.0.1",
"express": "^5.2.1",
"express-session": "^1.19.0",
"express-validator": "^7.3.1",
"html2canvas": "^1.4.1",
"jspdf": "^4.0.0",
"method-override": "^3.0.0",
"moment": "^2.30.1",
"mongodb": "^7.0.0",
"mongoose": "^9.1.5",
"morgan": "^1.10.1",
"multer": "^2.0.2",
"nodemailer": "^7.0.12",
"nodemon": "^3.1.11",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"validator": "^13.15.26"
},
"devDependencies": {
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"supertest": "^7.2.2"
}
}