-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
105 lines (105 loc) · 3.29 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": "project-management",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "node server/app.js",
"build": "react-scripts build",
"heroku-postbuild": "npm run build",
"client": "react-scripts start",
"test": "concurrently \"env-cmd -f ./test/test.env jest --detectOpenHandles --forceExit\" \"react-scripts test --passWithNoTests\"",
"eject": "react-scripts eject",
"server": "env-cmd -f ./config/dev.env nodemon server/dev-app.js",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"prettier:base": "prettier --ignore-path .gitignore",
"eslint:base": "eslint --ignore-path .eslintignore",
"lint:eslint": "npm run eslint:base -- --max-warnings 0 \"**/*.{js,ts,tsx,mdx}\"",
"lint:eslint-config-prettier": "eslint --print-config .eslintrc | eslint-config-prettier-check",
"lint": "npm run lint:eslint",
"format:prettier": "npm run prettier:base -- --write \"**/*.{js,ts,tsx,json,md,mdx}\"",
"format:eslint": "npm run eslint:base -- --fix \"**/*.{js,ts,tsx,mdx}\"",
"format": "npm run format:eslint && npm run format:prettier"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.34",
"@fortawesome/free-brands-svg-icons": "^5.15.2",
"@fortawesome/free-regular-svg-icons": "^5.15.2",
"@fortawesome/free-solid-svg-icons": "^5.15.2",
"@fortawesome/react-fontawesome": "^0.1.14",
"@sendgrid/mail": "^7.4.4",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@trendmicro/react-sidenav": "^0.5.0",
"axios": "^0.21.1",
"axios-extensions": "^3.1.3",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"bootstrap": "^4.6.0",
"cors": "^2.8.5",
"env-cmd": "^10.1.0",
"express": "^4.17.1",
"is-reachable": "^5.0.0",
"leaflet": "^1.7.1",
"leaflet-geosearch": "^3.3.2",
"mdbreact": "^5.0.2",
"mongodb": "^3.6.6",
"mongodb-client-encryption": "^1.2.3",
"mongoose": "^5.11.18",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-bootstrap": "^1.5.1",
"react-datepicker": "^3.8.0",
"react-dom": "^17.0.1",
"react-leaflet": "^3.1.0",
"react-leaflet-geosearch": "^0.3.0",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"react-spring": "^8.0.27",
"sweetalert": "^2.1.2",
"validator": "^13.5.2",
"web-vitals": "^1.0.1"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"concurrently": "^6.0.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-react-app": "^6.0.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-flowtype": "^5.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.5",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^3.10.1",
"jest": "^26.6.0",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"react-test-renderer": "^17.0.1",
"supertest": "^6.1.3"
},
"proxy": "http://localhost:3001"
}