-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.31 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
{
"name": "learning-management-system",
"version": "1.0.0",
"description": "Learning Management System",
"main": "index.js",
"scripts": {
"start": "nodemon -e js, ejs",
"start:prod": "node index.js",
"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 install"
},
"lint-staged": {
"*.js": [
"eslint",
"prettier --write ."
]
},
"author": "Swanand Bhuskute <[email protected]>",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"cheerio": "^1.0.0-rc.12",
"connect-ensure-login": "^0.1.1",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.6",
"ejs": "^3.1.9",
"eslint-plugin-react": "^7.33.2",
"express": "^4.18.2",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"pg": "^8.11.3",
"pg-hstore": "^2.3.4",
"pg-promise": "^11.5.4",
"supertest": "^6.3.3",
"tiny-csrf": "^1.1.3"
},
"devDependencies": {
"eslint": "^8.52.0",
"express-session": "^1.17.3",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.0.2",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"sequelize": "^6.33.0",
"sequelize-cli": "^6.6.1"
}
}