forked from Recidiviz/covid19-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.35 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
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"private": true,
"scripts": {
"build": "parcel build index.html && echo && parcel build --target node src/entry-point-static/build.tsx && node src/entry-point-static/fixSourceMap.tsx && echo && node --enable-source-maps dist/build.js && rm -f dist/build.js dist/build.js.map",
"clean": "rm -rf dist && rm -rf .cache",
"dev": "parcel serve index.html",
"lint-all-check": "npm-run-all -s --continue-on-error lint-tsc-check lint-eslint-check lint-prettier-check",
"lint-all-fix": "npm-run-all -s lint-eslint-fix lint-prettier-fix",
"lint-eslint-check": "eslint --ignore-path .gitignore 'src/**/*.{js,ts,tsx}'",
"lint-eslint-fix": "eslint --fix --ignore-path .gitignore 'src/**/*.{js,ts,tsx}'",
"lint-prettier-check": "prettier --check --ignore-path .gitignore src",
"lint-prettier-fix": "prettier --write --ignore-path .gitignore src",
"lint-tsc-check": "tsc",
"postinstall": "touch node_modules/.bin/.keep"
},
"dependencies": {
"@auth0/auth0-spa-js": "^1.6.5",
"@babel/runtime": "^7.9.2",
"@hot-loader/react-dom": "16.13.0",
"@popperjs/core": "2.2.1",
"@types/camelcase-keys": "5.1.1",
"@types/d3": "5.7.2",
"@types/d3-array": "2.0.0",
"@types/lodash": "4.14.149",
"@types/ndarray": "1.0.7",
"@types/node": "12.12.31",
"@types/numeral": "0.0.26",
"@types/qs": "6.9.1",
"@types/react": "16.9.26",
"@types/react-dom": "16.9.5",
"@types/react-hot-loader": "4.1.1",
"@types/react-router-dom": "5.1.3",
"@types/styled-components": "5.0.1",
"@typescript-eslint/eslint-plugin": "2.25.0",
"@typescript-eslint/parser": "2.25.0",
"babel-plugin-styled-components": "1.10.7",
"camelcase-keys": "^6.2.2",
"chalk": "3.0.0",
"core-js": "3.6.4",
"d3": "5.15.0",
"d3-array": "2.4.0",
"date-fns": "2.11.1",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.1",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-react": "7.19.0",
"eslint-plugin-react-hooks": "3.0.0",
"eslint-plugin-simple-import-sort": "5.0.2",
"firebase": "7.14.0",
"hex-alpha": "^1.0.2",
"husky": "4.2.3",
"lint-staged": "10.0.9",
"lodash": "4.17.15",
"map-obj": "4.1.0",
"ndarray": "1.0.19",
"npm-run-all": "4.1.5",
"numeral": "^2.0.6",
"parcel": "1.12.4",
"prettier": "2.0.2",
"qs": "6.9.3",
"react": "^16.0.0",
"react-date-picker": "8.0.1",
"react-dom": "^16.0.0",
"react-hot-loader": "4.12.20",
"react-is": "16.13.1",
"react-popper": "2.1.0",
"react-router-dom": "5.1.2",
"react-spinners": "^0.8.1",
"regenerator-runtime": "0.13.5",
"resize-observer-polyfill": "^1.5.1",
"semiotic": "1.20.5",
"styled-components": "5.0.1",
"typescript": "3.8.3",
"us-zcta-counties": "0.0.2"
},
"alias": {
"react-dom": "@hot-loader/react-dom"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"!(*.d).ts": [
"false -- Please use .tsx instead of .ts!"
],
"*.js": [
"false -- Please use .tsx with `// @ts-nocheck` instead of .js!"
],
"*.{html,json,md,webmanifest}": [
"prettier --write"
],
"*.{d.ts,tsx}": [
"bash -c tsc",
"eslint --cache --fix",
"prettier --write"
]
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.9.0"
}
}