-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.78 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
{
"name": "scoot-web-app",
"version": "1.0.0",
"description": "Scoot. An app for managing scooter rentals.",
"main": "index.js",
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"aws-sdk": "^2.647.0",
"bcrypt": "^4.0.1",
"body-parser": "^1.19.0",
"brenton-js-utils": "^1.0.2",
"camelcase": "^5.3.1",
"decamelize": "^4.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-pino-logger": "^4.0.0",
"express-promise-router": "^3.0.3",
"history": "^4.10.1",
"jsonwebtoken": "^8.5.1",
"lodash.debounce": "^4.0.8",
"module-alias": "^2.2.2",
"moment": "^2.24.0",
"multer": "^1.4.2",
"pg": "^7.18.2",
"qs-stringify": "^1.2.0",
"rc-time-picker": "^3.7.3",
"react": "^16.13.1",
"react-datepicker": "^1.5.0",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"react-router-dom": "^5.1.2",
"react-scripts": "^3.4.1",
"react-table": "^6.8.2",
"redux": "^4.0.5",
"redux-promise": "^0.6.0",
"sanitize-html": "^1.22.1",
"whatwg-fetch": "^3.0.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"repository": "https://github.com/BrentonCozby/scoot.git",
"devDependencies": {
"svg-react-loader": "^0.4.6"
},
"jest": {
"moduleNameMapper": {
"\\.(css|less|sass|scss)$": "<rootDir>/src/__mocks__/style-mock.js",
"\\.(gif|ttf|eot|svg|png|jpg)$": "<rootDir>/src/__mocks__/file-mock.js"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}