-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.12 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
{
"type": "module",
"name": "frame1",
"version": "2.0.0",
"description": "Nodejs Frame Project",
"main": "app.js",
"scripts": {
"test": "mocha",
"start": "NODE_ENV=production node app.js",
"start:dev": "JWT_SECRET=dfwcrq3rqrq NODE_ENV=development node app.js",
"start:dev:w": "JWT_SECRET=dfwcrq3rqrq NODE_ENV=development nodemon app.js",
"bundle": "webpack -w --mode=development",
"bundle:prod": "webpack --mode=production",
"compile": "tsc -w",
"compile:prod": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Team-DeVent/devent-frame"
},
"author": "dipokalhhj",
"license": "ISC",
"bugs": {
"url": "https://github.com/Team-DeVent/devent-frame/issues"
},
"homepage": "https://github.com/Team-DeVent/devent-frame#readme",
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fontsource/roboto": "^5.0.5",
"@mui/icons-material": "^5.14.0",
"@mui/material": "^5.14.0",
"@reduxjs/toolkit": "^1.9.5",
"@types/node": "^20.4.3",
"@types/react-router-dom": "^5.3.3",
"@types/sanitize-html": "^2.6.2",
"axios": "^1.4.0",
"bcrypt": "^5.0.1",
"body-parser": "^1.20.1",
"cookie-parser": "^1.4.6",
"css-loader": "^6.7.3",
"dayjs": "^1.11.5",
"deventds": "^1.0.8",
"docdash": "^1.2.0",
"express": "^4.18.2",
"express-handlebars": "^6.0.2",
"helmet": "^7.0.0",
"js-cookie": "^3.0.5",
"jsonwebtoken": "^8.5.1",
"mysql2": "^2.3.3",
"passport": "^0.6.0",
"passport-google-oauth20": "^2.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.1.1",
"react-router-dom": "^5.3.4",
"reflect-metadata": "^0.1.13",
"sanitize-html": "^2.6.1",
"style-loader": "^3.3.2",
"ts-loader": "^9.4.3",
"typeorm": "^0.3.12",
"uuid": "^8.3.2",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"babel-loader": "^9.1.2",
"chai": "^4.3.6",
"chai-http": "^4.3.0",
"jsdoc": "^3.6.10",
"mocha": "^9.2.0"
}
}