-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 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
86
87
88
89
90
91
{
"name": "chart-playground",
"version": "0.1.0",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@material-ui/core": "4.11.0",
"@material-ui/lab": "4.0.0-alpha.56",
"@material-ui/styles": "4.10.0",
"@nivo/bar": "0.62.0",
"@nivo/line": "0.62.0",
"d3": "5.16.0",
"query-string": "^6.13.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-router-config": "5.1.1",
"react-router-dom": "^5.2.0",
"rebass": "4.0.7",
"styled-components": "5.1.0",
"styled-system": "5.1.5",
"use-query-params": "^1.1.6"
},
"devDependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/d3": "5.7.2",
"@types/gh-pages": "3.0.0",
"@types/prettier": "2.0.2",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/react-router-config": "^5.0.1",
"@types/react-router-dom": "^5.1.5",
"@types/rebass": "4.0.6",
"@types/styled-components": "5.1.0",
"@types/styled-system": "5.1.5",
"@types/stylelint": "9.10.1",
"@types/testing-library__jest-dom": "^5.9.1",
"@types/testing-library__react": "^10.0.1",
"gh-pages": "3.0.0",
"lint-staged": "10.2.11",
"pre-commit": "^1.2.2",
"prettier": "2.0.5",
"react-scripts": "3.4.1",
"styled-media-query": "2.1.2",
"stylelint": "9.2.0",
"stylelint-config-standard": "18.2.0",
"stylelint-config-styled-components": "0.1.1",
"stylelint-processor-styled-components": "1.3.1",
"typescript": "3.9.5"
},
"eslintConfig": {
"extends": "react-app"
},
"homepage": "http://sibelius.github.io/chart-playground",
"lint-staged": {
"*.{js,ts,tsx}": [
"yarn prettier",
"yarn stylelint --fix",
"eslint --fix"
],
"*.yml": [
"prettier --write",
"git add"
]
},
"pre-commit": "lint:staged",
"private": true,
"scripts": {
"build": "react-scripts build",
"deploy": "gh-pages -d build",
"eject": "react-scripts eject",
"lint:css": "stylelint './src/*.tsx'",
"lint:staged": "yarn lint-staged",
"predeploy": "npm run build",
"prettier": "prettier --write",
"start": "react-scripts start",
"test": "react-scripts test",
"tsc": "yarn tsc"
}
}