This repository has been archived by the owner on Jun 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 76
/
Copy pathpackage.json
54 lines (54 loc) · 1.54 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
{
"name": "mappypals",
"version": "0.1.0",
"private": true,
"devserver": "live-server --browser=Chrome",
"dependencies": {
"axios": "^0.18.0",
"concurrently": "^4.1.0",
"deck.gl": "^7.0.11",
"dotenv": "^8.0.0",
"firebase": "^6.3.3",
"isemail": "^3.2.0",
"ky": "^0.10.0",
"mapbox-gl": "^0.53.0",
"node-sass": "^4.12.0",
"react": "^16.8.2",
"react-dom": "^16.8.2",
"react-map-gl": "^4.0.11",
"react-map-gl-geocoder": "^2.0.5",
"react-mapbox-gl": "^4.2.0",
"react-redux": "^7.1.0",
"react-router-dom": "^4.3.1",
"react-scripts": "3.0.1",
"react-select": "^3.0.4",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"styled-components": "^4.3.2",
"tachyons": "^4.11.1",
"validator": "^11.1.0"
},
"scripts": {
"start": "react-scripts start && node --require dotenv/config index.js",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"format": "prettier --write \"**/*.{js,css,md}\"",
"prestart:api": "node src/server/createMockDB.js",
"start:api": "node src/server/server.js"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"json-server": "^0.15.0",
"faker": "^4.1.0",
"prettier": "1.17.1"
}
}