-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 1.75 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
{
"name": "eastendtradesguild",
"version": "0.1.0",
"private": true,
"proxy": "http://localhost:5000/",
"dependencies": {
"airtable": "^0.5.6",
"dotenv": "^6.1.0",
"express": "^4.16.3",
"leaflet": "^1.3.4",
"leaflet.markercluster": "^1.4.1",
"prop-types": "^15.6.2",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-leaflet": "^2.1.0",
"react-leaflet-markercluster": "^2.0.0-rc3",
"react-scripts": "^2.1.3",
"styled-components": "^3.4.10",
"tachyons": "^4.11.1",
"tachyons-cli": "^1.3.2"
},
"scripts": {
"start": "node server.js",
"start:server": "nodemon server.js",
"start:client": "react-scripts start",
"dev": "npm run css && concurrently --kill-others-on-fail \"npm run start:server\" \"npm run start:client\"",
"build": "react-scripts build",
"test": "react-scripts test",
"css": "tachyons src/css/app.css > src/index.css --minify",
"test:coverage": "npm test -- --coverage",
"coverage": "codecov",
"eject": "react-scripts eject",
"heroku-postbuild": "npm run build",
"prebuild": "npm run css"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"canvas": "^1.6.13",
"codecov": "^3.1.0",
"concurrently": "^4.0.1",
"eslint-config-prettier": "^3.1.0",
"nock": "^10.0.0",
"prettier": "^1.14.3",
"react-testing-library": "^5.2.0",
"supertest": "^3.3.0",
"merge": ">=1.2.1",
"lodash": ">=4.17.5"
},
"jest": {
"collectCoverageFrom": [
"**/*.js",
"!**/node_modules/**",
"!**/build/**",
"!**/**/serviceWorker.js",
"!**/coverage/**",
"!**/server.js",
"!**/src/index.js"
]
}
}