-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
105 lines (105 loc) · 2.56 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "huayra",
"version": "3.6.5",
"private": true,
"scripts": {
"start": "concurrently \"npm run server\" \"npm run client\"",
"server": "nodemon app.js --ignore 'src/**'",
"client": "react-scripts start",
"build": "react-scripts build",
"test": "standard && react-scripts test",
"eject": "react-scripts eject"
},
"author": "Larry Lai",
"license": "MIT",
"engines": {
"node": ">=18.17.0"
},
"proxy": "http://localhost:3001/",
"standard": {
"globals": [
"fetch",
"localStorage",
"Headers",
"$",
"callback"
],
"ignore": [
"/db-scripts/**",
"/src/serviceWorker.js",
"/src/__tests__/**"
]
},
"dependencies": {
"@redux-devtools/extension": "^3.3.0",
"@reduxjs/toolkit": "^2.2.6",
"async": "^3.2.0",
"axios": "^0.25.0",
"bcrypt": "^5.0.0",
"body-parser": "1.x.x",
"bootstrap": "^4.6.0",
"classnames": "^2.2.5",
"compression": "1.x.x",
"cookie-parser": "1.x.x",
"cors": "^2.8.5",
"csurf": "1.x.x",
"debug": "^2.6.9",
"emailjs": "3.7.0",
"express": "^4.17.2",
"helmet": "2.x.x",
"jsonwebtoken": "^8.5.1",
"method-override": "2.3.10",
"mongoose": "^6.2.1",
"morgan": ">=1.10.0",
"ms": "^2.1.2",
"object-assign": "^4.1.1",
"passport": "^0.5.2",
"passport-jwt": "^4.0.0",
"passport-local": "1.x.x",
"prop-types": "^15.6.0",
"pug": "^3.0.2",
"react": "^17.0.2",
"react-data-table-component": "^7.6.2",
"react-dom": "^17.0.2",
"react-helmet": "^5.2.0",
"react-redux": "^7.2.4",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "5.0.0",
"reactstrap": "^8.9.0",
"redux": "^4.1.0",
"serve-static": "1.14.x",
"styled-components": "^6.1.8",
"underscore.string": "^3.3.5"
},
"devDependencies": {
"concurrently": "^8.0.1",
"font-awesome": "4.x.x",
"grunt": "^1.3.0",
"grunt-cli": "1.x.x",
"grunt-concurrent": "3.x.x",
"grunt-contrib-clean": "2.x.x",
"grunt-contrib-copy": "1.x.x",
"grunt-contrib-jshint": "3.1.1",
"grunt-contrib-less": "3.0.0",
"grunt-contrib-uglify": "5.0.1",
"grunt-contrib-watch": "1.x.x",
"grunt-newer": "1.x.x",
"html5shiv": "3.x.x",
"moment": "2.19.x",
"nodemon": "^3.0.1",
"react-app-rewired": "^2.2.1",
"react-error-overlay": "6.0.9",
"respond.js": "1.x.x",
"standard": "*"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}