-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.65 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
{
"name": "online-voting",
"version": "1.0.0",
"description": "An Online Voting Platform",
"main": "index.js",
"scripts": {
"pretest": "NODE_ENV=test npx sequelize-cli db:drop && NODE_ENV=test npx sequelize-cli db:create",
"start": "nodemon -e js,ejs",
"start:prod": "node index.js",
"test": "NODE_ENV=test jest --detectOpenHandles",
"prepare": "husky install",
"clean:start": "npm run pretest && NODE_ENV=test npm start",
"cy:test": "npx cypress run"
},
"lint-staged": {
"*.js": [
"eslint",
"prettier --write ."
]
},
"author": "Nithish",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.0",
"chart.js": "^4.1.2",
"connect-ensure-login": "^0.1.1",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.6",
"cookie-session": "^2.0.0",
"deep-email-validator": "^0.1.21",
"ejs": "^3.1.8",
"express": "^4.18.1",
"express-session": "^1.17.3",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"pg": "^8.8.0",
"sequelize": "^6.28.0",
"validator": "^13.11.0"
},
"devDependencies": {
"cheerio": "^1.0.0-rc.12",
"cypress": "^13.6.4",
"eslint": "^8.30.0",
"husky": "^8.0.3",
"jest": "^29.3.1",
"lint-staged": "^13.0.3",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"sequelize-cli": "^6.5.2",
"supertest": "^6.2.4",
"tailwindcss": "^3.2.4",
"tiny-csrf": "^1.1.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nithish1018/OnlineVote.git"
},
"bugs": {
"url": "https://github.com/nithish1018/OnlineVote/issues"
},
"homepage": "https://github.com/nithish1018/OnlineVote#readme"
}