-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.2 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.2 KB
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "atpls-player",
"version": "5.1.0",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "npm run css:prod && react-scripts build",
"test": "react-scripts test",
"test:types": "tsc --noUnusedLocals",
"lint": "eslint src --ext ts --ext tsx",
"analyze": "source-map-explorer 'build/static/js/*.js'",
"eject": "react-scripts eject",
"api:mock": "json-server -p 1234 --watch server/db.json",
"css:dev": "npx postcss src/styles/index.css -o src/styles/tailwind.css",
"css:prod": "npx postcss src/styles/index.css -o src/styles/tailwind.css --env production"
},
"dependencies": {
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"@react-hook/window-size": "^3.0.6",
"@tailwindcss/typography": "^0.2.0",
"@types/chroma-js": "^1.4.3",
"@types/d3": "^5.7.2",
"@types/debug": "^4.1.5",
"@types/jest": "^24.9.1",
"@types/lodash.debounce": "^4.0.6",
"@types/node": "^12.12.47",
"@types/react": "^16.9.41",
"@types/react-dom": "^16.9.8",
"@types/react-image-crop": "^8.1.2",
"@types/react-pdf": "^4.0.5",
"@types/react-router-dom": "^5.1.5",
"@types/topojson": "^3.2.2",
"@types/uuid": "^8.3.0",
"blurhash": "^1.1.3",
"chroma-js": "^2.1.0",
"classcat": "^4.1.0",
"d3": "^5.16.0",
"d3-geo-projection": "^2.9.0",
"debug": "^4.1.1",
"framer-motion": "^1.11.1",
"husky": "^3.1.0",
"idb": "^5.0.8",
"immer": "^8.0.0",
"ky": "^0.21.0",
"lint-staged": "^10.2.11",
"lodash.debounce": "^4.0.8",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-blurhash": "^0.1.3",
"react-cool-dimensions": "^1.1.3",
"react-css-collapse": "^4.0.6",
"react-dom": "^16.13.1",
"react-dropzone": "^11.2.4",
"react-ga": "^2.7.0",
"react-gesture-responder": "^2.1.0",
"react-image-crop": "^8.6.6",
"react-pdf": "^5.0.0",
"react-placeholder-image": "^0.1.8",
"react-query": "^2.4.15",
"react-responsive": "^8.1.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^3.4.1",
"react-scroll-to": "^3.0.0-beta.6",
"react-spring": "^8.0.27",
"react-use": "^15.3.4",
"resize-observer-polyfill": "^1.5.1",
"screenfull": "^5.0.2",
"standardized-audio-context": "^23.1.2",
"topojson": "^3.0.2",
"typescript": "^3.9.5",
"use-sound": "^1.0.2",
"uuid": "^8.3.1",
"@fullhuman/postcss-purgecss": "^2.3.0",
"@types/react-responsive": "^8.0.2",
"json-server": "^0.16.1",
"postcss-cli": "^7.1.2",
"postcss-import": "^12.0.1",
"source-map-explorer": "^2.5.1",
"tailwindcss": "^1.8.10"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run lint"
}
},
"eslintConfig": {
"extends": "react-app",
"rules": {
"no-unused-vars": "error",
"no-console": "error",
"react/jsx-key": "error"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {}
}