-
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.26 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.26 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": "voting-platform",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/Omkar76/voting-platform",
"author": "Omkar76",
"license": "MIT",
"private": true,
"scripts": {
"start": "node index.js",
"start:dev": "nodemon index.js --ignore sessions/",
"prepare": "husky install",
"pretest": "NODE_ENV=test npx sequelize-cli db:drop && NODE_ENV=test npx sequelize-cli db:create && NODE_ENV=test npx sequelize-cli db:migrate",
"test": "NODE_ENV=test jest --detectOpenHandles --runInBand"
},
"lint-staged": {
"*.js": [
"eslint",
"prettier --write ."
]
},
"dependencies": {
"bcrypt": "^5.1.0",
"cheerio": "^1.0.0-rc.12",
"connect-ensure-login": "^0.1.1",
"connect-flash": "^0.1.1",
"connect-redis": "^6.1.3",
"cookie-parser": "^1.4.6",
"ejs": "^3.1.8",
"express": "^4.18.2",
"express-session": "^1.17.3",
"jest": "^29.3.1",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"pg": "^8.8.0",
"redis": "^4.5.1",
"sequelize": "^6.29.0",
"sequelize-cli": "^6.5.2",
"supertest": "^6.3.3",
"tiny-csrf": "^1.1.3"
},
"devDependencies": {
"eslint": "^8.30.0",
"husky": "^8.0.0",
"nodemon": "^2.0.20",
"prettier": "^2.8.1"
}
}