-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.8 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.8 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
60
61
62
63
64
65
66
67
68
{
"name": "tool-share",
"version": "0.1.0",
"private": true,
"dependencies": {
"@google-cloud/storage": "^5.3.0",
"axios": "^0.19.0",
"body-parser": "^1.18.3",
"dotenv": "^8.0.0",
"express": "^4.16.3",
"express-session": "^1.15.6",
"firebase": "^7.19.1",
"latlng-to-zip": "0.0.2",
"massive": "^6.6.0",
"moment": "^2.22.2",
"node-sass-chokidar": "^1.3.3",
"nodemailer": "^6.2.1",
"npm": "^6.4.0",
"npm-run-all": "^4.1.3",
"prop-types": "^15.6.2",
"react": "^16.4.2",
"react-autosuggest": "^10.0.2",
"react-datepicker": "^2.8.0",
"react-dates": "^21.8.0",
"react-day-picker": "^7.1.10",
"react-dom": "^16.4.2",
"react-dropzone": "^11.0.3",
"react-iframe": "^1.2.0",
"react-input-range": "^1.3.0",
"react-moment": "^0.9.2",
"react-redux": "^7.1.0",
"react-router-dom": "^5.0.1",
"react-scripts": "3.4.3",
"react-stripe-checkout": "^2.6.3",
"react-themeable": "^1.1.0",
"react-touch": "^0.4.4",
"redux": "^4.0.0",
"redux-promise-middleware": "^6.1.1",
"socket.io": "^4.1.1",
"socket.io-client": "^2.1.1",
"stripe": "^8.92.0",
"sweetalert2": "^8.15.2"
},
"scripts": {
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"build": "npm run build-css && react-scripts build",
"test": "jest",
"eject": "react-scripts eject"
},
"proxy": {
"/api": {
"target": "http://localhost:3005"
},
"/auth": {
"target": "http://localhost:3005"
}
},
"main": "./server/server.js",
"devDependencies": {
"jest": "^26.4.2"
},
"jest": {
"testEnvironment": "node"
}
}