-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
125 lines (125 loc) · 4.11 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@actnowcoalition/actnow.js",
"version": "0.2.0",
"description": "ActNow.js - Build location-based dashboards in React",
"repository": "git@github.com:act-now-coalition/act-now-packages.git",
"keywords": [
"actnowcoalition",
"actnow.js",
"location",
"dashboards",
"react"
],
"author": "Act Now Coalition",
"license": "MIT",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "husky install",
"run-script": "yarn ts-node-script",
"test": "TZ=America/Los_Angeles jest",
"test:watch": "jest --watch",
"test:ci": "CI=true yarn test",
"lint": "eslint .",
"build:esm": "tsc --project ./tsconfig.esm.json",
"build:cjs": "tsc --project ./tsconfig.cjs.json",
"build": "yarn build:esm && yarn build:cjs",
"release": "yarn build && yarn changeset publish",
"storybook": "start-storybook -p 6006",
"create-component": "yarn plop component",
"generate-module-docs": "yarn typedoc --out public/docs --entryPointStrategy packages --name 'Act Now Packages' . # See #356",
"generate-src-docs": "yarn typedoc --out public/docs src/*/index.ts --name 'Act Now Packages' # See #356",
"generate-storybook": "yarn build-storybook -o public/storybook",
"build-public": "yarn build && yarn generate-storybook && yarn generate-src-docs"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --max-warnings=0",
"*": "prettier --write --ignore-unknown"
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@changesets/cli": "^2.24.4",
"@mui/material": "5.11.4",
"@storybook/addon-actions": "^6.5.14",
"@storybook/addon-essentials": "^6.5.14",
"@storybook/addon-interactions": "^6.5.14",
"@storybook/addon-links": "^6.5.14",
"@storybook/builder-webpack4": "^6.5.14",
"@storybook/manager-webpack4": "^6.5.14",
"@storybook/react": "^6.5.14",
"@storybook/testing-library": "^0.0.13",
"@testing-library/react": "^13.4.0",
"@trivago/prettier-plugin-sort-imports": "^3.4.0",
"@types/d3-geo": "^2.0.2",
"@types/d3-scale-chromatic": "^3.0.0",
"@types/jest": "^27.5.1",
"@types/lodash": "^4.14.182",
"@types/luxon": "^2.3.2",
"@types/node": "^17.0.33",
"@types/papaparse": "^5.3.3",
"@types/react-copy-to-clipboard": "^5.0.4",
"@types/react-simple-maps": "^1.0.8",
"@types/topojson-client": "^3.1.1",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"@visx/mock-data": "^2.1.2",
"babel-loader": "^8.2.5",
"d3-scale-chromatic": "^3.0.0",
"eslint": "^8.15.0",
"eslint-plugin-lodash": "^7.4.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.1",
"jest": "^28.1.0",
"jest-environment-jsdom": "^29.2.2",
"lint-staged": "^12.4.1",
"lodash": "^4.17.21",
"plop": "^3.1.0",
"prettier": "2.6.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"ts-jest": "^28.0.2",
"ts-node": "^10.7.0",
"tsconfig-paths": "^4.0.0",
"typedoc": "^0.23.21",
"typescript": "^4.9.4"
},
"peerDependencies": {
"@mui/material": "5.11.4",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.8.4",
"@mui/lab": "^5.0.0-alpha.111",
"@visx/axis": "^2.12.2",
"@visx/curve": "^2.1.0",
"@visx/event": "^2.6.0",
"@visx/grid": "^2.12.2",
"@visx/group": "^2.10.0",
"@visx/responsive": "^2.10.0",
"@visx/scale": "^2.2.2",
"@visx/shape": "^2.12.2",
"@visx/voronoi": "^2.10.0",
"d3-geo": "^2.0.2",
"delay": "^5.0.0",
"encoding": "^0.1.13",
"lodash": "^4.17.21",
"luxon": "^2.4.0",
"node-fetch": "^2.6.7",
"p-limit": "^3.1.0",
"p-retry": "^4.6.2",
"papaparse": "^5.3.2",
"react-copy-to-clipboard": "^5.1.0",
"react-markdown": "^8.0.3",
"react-share": "^4.4.0",
"react-simple-maps": "^3.0.0",
"react-singleton-hook": "^4.0.0",
"swr": "^1.3.0",
"topojson-client": "^3.1.0"
}
}