-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.2 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
{
"name": "todo-app",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start:prod": "node index.js",
"start": "nodemon -e js,ejs",
"pretest": "NODE_ENV=test npx sequelize-cli db:drop && NODE_ENV=test npx sequelize-cli db:create",
"test": "NODE_ENV=test jest --detectOpenHandles",
"prepare": "husky"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write ."
]
},
"author": "shyam <[email protected]>",
"license": "ISC",
"description": "",
"devDependencies": {
"@eslint/js": "^9.15.0",
"cheerio": "^1.0.0",
"connect-ensure-login": "^0.1.1",
"ejs": "^3.1.10",
"eslint": "^9.15.0",
"express": "^4.21.1",
"express-session": "^1.18.1",
"globals": "^15.12.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"nodemon": "^3.1.7",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"pg": "^8.13.1",
"prettier": "^3.3.3",
"sequelize": "^6.37.5",
"sequelize-cli": "^6.6.2",
"supertest": "^7.0.0"
},
"dependencies": {
"bcrypt": "^5.1.1",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.7",
"csurf": "^1.10.0",
"tailwindcss": "^3.4.15"
}
}