forked from GNS-Science/simple-toshi-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.45 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
{
"name": "simple-toshi-ui",
"version": "0.1.1",
"private": true,
"dependencies": {
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"@react-leaflet/core": ">=1.0.2 <1.1.0 || ^1.1.1",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@visx/legend": "^1.17.1",
"@visx/scale": "^1.14.0",
"@visx/tooltip": "^1.17.1",
"@visx/xychart": "2.0.0-alpha.0",
"build-url-ts": "^6.0.1",
"d3": "^6.7.0",
"date-fns": "^2.22.1",
"leaflet": "^1.7.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-leaflet": ">=3.1.0 <3.2.0 || ^3.2.1",
"react-markdown": "^6.0.2",
"react-relay": "^11.0.2",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"react-spring": "^9.2.4",
"web-vitals": "^1.0.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --watchAll=false --coverage",
"eject": "react-scripts eject",
"relay": "relay-compiler --src ./src --schema ./schema.graphql --language typescript",
"lint": "eslint ./src/**/*.{js,ts,tsx} --quiet --fix",
"precommit": "yarn lint",
"prepush": "yarn test",
"prepare": "husky install"
},
"lint-staged": {
"./src/**/*.{js,ts,tsx}": [
"eslint --quiet --fix"
]
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
],
"devDependencies": {
"@types/d3": "^6.7.0",
"@types/jest": "^26.0.23",
"@types/leaflet": "^1.7.1",
"@types/node": "^15.3.0",
"@types/react": "^17.0.5",
"@types/react-dom": "^17.0.5",
"@types/react-relay": "^11.0.1",
"@types/react-router-dom": "^5.1.7",
"@types/react-test-renderer": "^17.0.1",
"@types/relay-test-utils": "^6.0.4",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"babel-plugin-relay": "^11.0.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"get-graphql-schema": "^2.1.2",
"graphql": "^15.5.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0",
"react-test-renderer": "^17.0.2",
"relay-compiler": "^11.0.2",
"relay-compiler-language-typescript": "^14.0.0",
"relay-config": "^11.0.2",
"relay-test-utils": "^11.0.2",
"typescript": "^4.2.4"
}
}