forked from NOON-official/bringcon
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.66 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.66 KB
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
{
"name": "react-boiler-plate",
"version": "1.0.0",
"description": "react boiler plate",
"main": "index.js",
"engine": {
"node": "10.16.0",
"npm": "6.9.0"
},
"scripts": {
"start": "node server/index.js",
"backend": "nodemon server/index.js",
"frontend": "npm run start --prefix client",
"dev": "concurrently \"npm run backend\" \"npm run start --prefix client\"",
"frontend-prod": "NODE_ENV=production PORT=80 npm run start --prefix client",
"prod": "concurrently \"npm run backend\" \"export PORT=80 && npm run start --prefix client\""
},
"author": "John ahn",
"license": "ISC",
"dependencies": {
"@nivo/line": "^0.73.0",
"async": "^3.2.0",
"aws-sdk": "^2.951.0",
"axios": "^0.21.1",
"body-parser": "^1.18.3",
"cookie-parser": "^1.4.3",
"cors": "^2.8.5",
"debug": "^4.1.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"ffmpeg": "0.0.4",
"fluent-ffmpeg": "^2.1.2",
"greenlock-express": "^4.0.3",
"jquery": "^3.6.0",
"jquery.cookie": "^1.4.1",
"jsonwebtoken": "^8.5.1",
"moment": "^2.24.0",
"mongoose": "^5.13.3",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"react": "^17.0.2",
"react-carousel-slider": "^2.0.13",
"react-helmet": "^6.1.0",
"react-redux": "^5.0.7",
"react-scroll-horizontal": "^1.6.6",
"react-transition-group": "^4.4.2",
"recharts": "^2.1.2",
"saslprep": "^1.0.3",
"slick-carousel": "^1.8.1",
"styled-components": "^5.3.0",
"supports-color": "^7.1.0",
"sweetalert2": "^11.1.2",
"unique-random-array": "^3.0.0"
},
"devDependencies": {
"concurrently": "^4.1.2",
"nodemon": "^1.19.1"
}
}