-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.88 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
{
"name": "eyes-on-the-world",
"version": "1.0.0",
"description": "TBA",
"main": "server.js",
"dependencies": {
"aws-sdk": "^2.630.0",
"axios": "^0.21.1",
"bcrypt": "^5.0.0",
"bcryptjs": "^2.4.3",
"cloudinary": "^1.21.0",
"config": "^3.2.5",
"express": "^4.17.1",
"gridfs-stream": "^1.1.1",
"jsonwebtoken": "^8.5.1",
"moment": "^2.24.0",
"mongodb": "^3.5.4",
"mongoose": "^5.9.1",
"multer": "^1.4.2",
"multer-gridfs-storage": "^4.0.2",
"multer-s3": "^2.9.0",
"multer-storage-cloudinary": "^2.2.1",
"node": "^13.12.0",
"node-sass": "^4.13.1",
"react-google-login": "^5.1.1",
"react-redux": "^7.2.0",
"react-transition-group": "^1.2.1",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0",
"sass": "^1.26.3",
"timeout-transition-group": "^2.1.0"
},
"devDependencies": {
"autoprefixer": "^9.7.6",
"concurrently": "^5.1.0",
"nodemon": "^2.0.2",
"postcss": "^7.0.27",
"postcss-cli": "^7.1.0",
"postcss-loader": "^3.0.0"
},
"scripts": {
"watch": "concurrently \"npm run watch-sass\" \"npm run autoprefixer\"",
"watch-sass": "node-sass --watch scss -o my-react-app/src",
"autoprefixer": "postcss -u autoprefixer -r my-react-app/src/main.css",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"server": "nodemon server",
"clientSide": "npm start --prefix my-react-app",
"dev": "concurrently \"npm run server\" \"npm run clientSide \"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix my-react-app && npm run build --prefix my-react-app"
},
"author": "TRU",
"license": "ISC"
}