forked from laem/transparencemedia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.78 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
{
"name": "transparencemedia",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --watch",
"type-check": "tsc --pretty --noEmit",
"fresh-install": "rm -rf node_modules/ build/ && yarn",
"check-all": "yarn lint && yarn type-check && yarn test --watchAll=false",
"load-data": "NODE_OPTIONS='--experimental-json-modules' node ./scripts/load-data.mjs"
},
"dependencies": {
"@chakra-ui/react": "^1.8.6",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"classnames": "^2.3.1",
"d3": "^7.2.1",
"debounce": "^1.2.1",
"fetch-jsonp": "^1.2.1",
"framer-motion": "^6",
"js-yaml-loader": "^1.2.2",
"next": "^12.1.0",
"ramda": "^0.23.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-horizontal-bar-chart": "^0.3.2",
"react-icons": "^4.3.1",
"react-textfit": "^1.1.1",
"react-window-size": "^1.2.2",
"remove-accents": "^0.4.2",
"vis": "^4.21.0-EOL"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@types/jest": "^27.4.1",
"@types/node": "17.0.21",
"@types/react": "17.0.39",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"dsv-loader": "^2.0.0",
"eslint": "8.10.0",
"eslint-config-next": "12.1.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-jest-dom": "^4.0.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-testing-library": "^5.0.5",
"jest": "^27.5.1",
"js-yaml": "^4.1.0",
"prettier": "^2.5.1",
"prettier-eslint": "^13.0.0",
"ts-jest": "^27.1.3",
"typescript": "4.5.5"
}
}