-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.26 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
{
"name": "taxwizard",
"version": "1.0.0",
"description": "DU Hackathon Dev Ops Segment",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon -L server.js",
"test": "jest --runInBand --detectOpenHandles",
"build-tailwind:css": "postcss public/stylesheets/tailwind.css -o public/stylesheets/style.css",
"tailwind:css": "postcss public/stylesheets/tailwind.css -o public/stylesheets/style.css --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"autoprefixer": "^10.4.16",
"bcrypt": "^5.1.1",
"chai": "^4.3.10",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-flash": "^0.0.2",
"express-session": "^1.17.3",
"express-validator": "^7.0.1",
"jest": "^29.7.0",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"mocha": "^10.2.0",
"mongodb": "^6.2.0",
"mongoose": "^8.0.0",
"morgan": "^1.10.0",
"nodemon": "^3.0.1",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"password-validator": "^5.3.0",
"pm2": "^5.3.0",
"postcss": "^8.4.31",
"postcss-cli": "^10.1.0",
"supertest": "^6.3.3",
"tailwindcss": "^3.3.5",
"uuid": "^9.0.1"
}
}