-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 2.5 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
{
"name": "sdc",
"version": "1.0.0",
"description": "system design",
"main": "index.js",
"scripts": {
"test": "PORT=6666 nyc mocha ./__tests__/server.reviews.test.js --exit",
"coverage": "jest --coverage",
"review-test": "mocha ReviewTest.test.js --require global-jsdom/register --require @babel/register",
"server-dev": "nodemon server/index.js",
"react-dev": "npx webpack -w",
"build": "nodemon server/index.js && npx webpack -w",
"oldstart": "node server/index.js",
"productionprep": "npm install --force && npx webpack && sudo chmod +x minify-js.sh && ./minify-js.sh",
"start": "pm2 start server/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rpp2207-amalthea/reviews.git"
},
"author": "Sean McDaniel",
"license": "ISC",
"bugs": {
"url": "https://github.com/rpp2207-amalthea/reviews/issues"
},
"homepage": "https://github.com/rpp2207-amalthea/reviews#readme",
"dependencies": {
"axios": "^1.1.3",
"bluebird": "^3.7.2",
"chai-dom": "^1.11.0",
"cloudinary": "^1.33.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"csv": "^6.2.5",
"date-fns": "^2.29.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"fast-csv": "^4.3.6",
"k6": "^0.0.0",
"mongoose": "^6.7.2",
"multer": "^1.4.5-lts.1",
"nyc": "^15.1.0",
"pg": "^8.8.0",
"pg-pool": "^3.5.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.7.1",
"react-toastify": "^9.1.1",
"request": "^2.88.2",
"sinon": "^15.0.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.14.5",
"@babel/register": "^7.18.9",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.5",
"@testing-library/dom": "^8.19.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"babel-jest": "^29.3.1",
"babel-loader": "^8.2.2",
"babel-plugin-styled-components": "^1.12.0",
"chai": "^4.3.7",
"css-loader": "^5.2.7",
"global-jsdom": "^8.6.0",
"html-webpack-plugin": "^5.3.2",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"jsdom": "^20.0.3",
"live-server": "^1.2.1",
"mocha": "^10.2.0",
"nodemon": "^2.0.7",
"react-refresh": "^0.9.0",
"style-loader": "^3.1.0",
"supertest": "^6.3.3",
"webpack": "^5.41.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^4.8.0"
}
}