-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.47 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "my_lms_aish",
"version": "1.0.0",
"description": "pupils capstone project",
"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 && NODE_ENV=test npx sequelize-cli db:migrate",
"test": "jest",
"build": "babel index.js routes models config -d lib && webpack --config webpack.config.js",
"upload-sourcemaps": "sentry-cli releases files 1.0.0 upload-sourcemaps ./out --rewrite --org iare-v1 --project node-express",
"prepare": "husky install",
"clean:start": "npm run pretest && NODE_ENV=test npm start",
"cy:test": "npx cypress run",
"sentry:sourcemaps": "sentry-cli sourcemaps inject --org iare-v1 --project node-express ./out && sentry-cli sourcemaps upload --org iare-v1 --project node-express ./out"
},
"repository": {
"type": "git",
"url": "https://github.com/Aishwariyaa-Anand/learning-management-system"
},
"keywords": [
"lms"
],
"lint-staged": {
"*.js": [
"eslint",
"prettier --write ."
]
},
"author": "Aishwariyaa <[email protected]>",
"license": "ISC",
"dependencies": {
"@google/generative-ai": "^0.19.0",
"@sentry/cli": "^2.33.1",
"@sentry/node": "^8.26.0",
"@sentry/profiling-node": "^8.30.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"connect-ensure-login": "^0.1.1",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.6",
"dotenv": "^16.4.5",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-session": "^1.18.0",
"i18n": "^0.15.1",
"mysql2": "^3.9.1",
"openai": "^4.61.0",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"pg": "^8.11.3",
"sequelize": "^6.35.2"
},
"devDependencies": {
"@babel/cli": "^7.25.6",
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"cypress": "^13.13.1",
"eslint": "^8.56.0",
"eslint-plugin-cypress": "^3.3.0",
"html-webpack-plugin": "^5.6.0",
"husky": "^9.0.7",
"jest": "^29.7.0",
"lint-staged": "^15.2.1",
"mini-css-extract-plugin": "^2.9.1",
"nodemon": "^3.0.3",
"prettier": "^3.2.4",
"sequelize-cli": "^6.6.2",
"supertest": "^7.0.0",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0"
}
}