-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
90 lines (90 loc) · 2.2 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
{
"name": "react-express-oauth-login-system",
"version": "1.1.6",
"browser": "dist/index.js",
"main": "src/api/index.js",
"dependencies": {
"body-parser": "^1.19.0",
"bootstrap": "^4.5.2",
"btoa": "^1.2.1",
"config": "^3.3.1",
"connect": "^3.7.0",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"deploy-node-app": "^1.5.4",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-http-proxy": "^1.6.2",
"express-oauth-login-system-server": "^1.0.3",
"express-session": "^1.17.1",
"jquery": "^3.5.1",
"lodash": "^4.17.20",
"md5": "^2.3.0",
"mongoose": "^5.10.0",
"morgan": "^1.10.0",
"mustache": "^4.0.1",
"node-fetch": "^2.6.0",
"nodemailer": "^6.4.11",
"popper.js": "^1.16.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-express-oauth-login-system-components": "^1.0.5",
"react-icons": "^3.11.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^3.4.3",
"whatwg-fetch": "^3.4.0"
},
"devDependencies": {
"concurrently": "^5.3.0",
"cross-spawn": "^6.0.5",
"eslint": "^6.6.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-flowtype": "2.50.1",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"nodemon": "^1.19.1",
"prettier": "^1.17.1"
},
"scripts": {
"start": "bash bin/dev.sh",
"build": "react-scripts build",
"deploy": "deploy-node-app",
"test": "react-scripts test",
"eject-www": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"files": [
"src/routes/index.js",
"build",
"src"
],
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"deploy-node-app": {
"prod": {
"port": 5000,
"protocol": "http",
"entrypoint": "src/api/index.js",
"type": "spa"
},
"dev": {
"port": 5000,
"protocol": "http",
"entrypoint": "src/api/index.js",
"registry": "",
"type": "spa",
"isPublic": false
}
},
"proxy": "http://localhost:5000"
}