-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.33 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
{
"name": "bike-map",
"version": "0.1.0",
"private": true,
"homepage": "https://jmurret.github.io/bike-map/",
"dependencies": {
"d3-ease": "1.0.6",
"deck.gl": "8.1.5",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-map-gl": "5.2.7",
"react-scripts": "3.4.1",
"styled-components": "5.1.1"
},
"scripts": {
"build": "react-scripts build",
"deploy": "gh-pages master -d build",
"predeploy": "npm run build",
"start": "react-scripts start",
"start-production": "react-scripts start",
"test:watch": "jest --config ./jest.config.json --setupFiles dotenv/config --watch",
"test": "jest --config ./jest.config.json --setupFiles dotenv/config --coverage"
},
"eslintConfig": {
"extends": "react-app"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,json,css,scss,md}": [
"prettier --single-quote --write",
"git add"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.3.4",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.10.0",
"enzyme-to-json": "^3.3.5",
"gh-pages": "^2.0.1",
"jest-fetch-mock": "^2.1.1",
"jest-styled-components": "^6.3.1"
}
}