-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.41 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "digital-platform",
"version": "2.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "npm-run-all --parallel watch:server watch:build",
"dev-front": "npm-run-all --parallel start-front watch:build",
"dev-front-jp": "npm-run-all --parallel start-front-jp watch:build",
"dev-front-jd": "npm-run-all --parallel start-front-jd watch:build",
"watch:build": "webpack --mode development --watch ./client/",
"watch:server": "nodemon -r dotenv/config --inspect src/app.js",
"building": "./node_modules/.bin/webpack",
"test": "jest --forceExit",
"coverage": "jest --coverage --collectCoverage=true --forceExit",
"start": "node src/app.js ",
"start-front": "node -r dotenv/config --inspect src/app.js ",
"start-front-jp": "node -r dotenv/config --inspect src/app.js dotenv_config_path=./.env.jp",
"start-front-jd": "node -r dotenv/config --inspect src/app.js dotenv_config_path=./.env.jd"
},
"author": "Pedrioko",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.15.4",
"@material-ui/core": "^4.12.3",
"@material-ui/lab": "^4.0.0-alpha.61",
"axios": "^0.21.4",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"csurf": "^1.11.0",
"dotenv": "^8.6.0",
"express": "^4.17.1",
"express-jwt": "^8.3.0",
"express-session": "^1.17.2",
"express-validator": "^6.12.1",
"fluent-ffmpeg": "^2.1.2",
"funthreads": "^2.0.4",
"jsonwebtoken": "^9.0.0",
"memory-streams": "^0.1.3",
"microjob": "^0.7.0",
"mime-types": "^2.1.32",
"mongoose": "^5.13.9",
"mongoose-autopopulate": "^0.12.3",
"mongoose-paginate-v2": "^1.4.2",
"multer": "^1.4.3",
"prop-types": "^15.7.2",
"query-string": "^6.14.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-js-pagination": "^3.0.2",
"react-lazy-load-image-component": "^1.5.1",
"react-loadingg": "^1.7.2",
"react-pixelate": "0.0.1",
"react-router": "^5.2.0",
"react-router-dom": "^5.3.0",
"socket.io": "^4.5.4",
"socket.io-client": "^3.1.2",
"underscore": "^1.13.1",
"validator": "^13.6.0",
"video-react": "^0.14.1"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"@shelf/jest-mongodb": "^1.3.4",
"autoprefixer": "^10.3.5",
"babel-loader": "^8.2.2",
"chai": "^4.3.3",
"css-loader": "^5.2.7",
"dotenv-webpack": "^6.0.4",
"file-loader": "^6.2.0",
"html-loader": "^1.3.2",
"html-webpack-plugin": "^4.5.2",
"jest": "^26.6.3",
"mocha": "^9.2.2",
"nodemon": "^2.0.12",
"npm-run-all": "^4.1.5",
"style-loader": "^1.3.0",
"supertest": "^6.1.6",
"svg-inline-loader": "^0.8.2",
"webpack": "^4.47.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
}
}