-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 2.18 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
{
"name": "matahari-terbit",
"private": true,
"scripts": {
"serve": "snowpack dev",
"build": "snowpack build",
"deploy": "yarn build && yarn firebase deploy",
"lint": "eslint --ext=.tsx,.ts src && yarn typecheck",
"typecheck": "tsc --skipLibCheck --noEmit",
"test": "jest",
"test-ci": "jest --ci --reporters=default --reporters=jest-junit",
"prepare": "husky install"
},
"dependencies": {
"@ant-design/icons": "^4.7.0",
"antd": "^4.20.4",
"chart.js": "3.7.1",
"d3-ease": "^3.0.1",
"i18next": "^21.6.14",
"i18next-browser-languagedetector": "^6.1.3",
"i18next-http-backend": "^1.4.0",
"leaflet": "^1.8.0",
"leaflet-geosearch": "^3.6.0",
"query-string": "^7.1.1",
"rc-util": "^5.21.5",
"react": "18.1.0",
"react-chartjs-2": "^3.3.0",
"react-dom": "18.1.0",
"react-ga4": "^1.4.1",
"react-geocode": "^0.2.3",
"react-i18next": "^11.14.2",
"react-is": "^18.1.0",
"react-leaflet": "^4.0.0",
"react-move": "^6.5.0",
"react-router-dom": "^6.3.0",
"rxjs": "^7.5.5",
"use-query-params": "^1.2.3"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@snowpack/app-scripts-react": "^2.0.1",
"@snowpack/plugin-react-refresh": "^2.5.0",
"@snowpack/plugin-sass": "^1.4.0",
"@types/d3-ease": "^3.0.0",
"@types/jest": "^27.0.3",
"@types/leaflet": "^1.7.9",
"@types/lodash": "^4.14.182",
"@types/node": "16.11.6",
"@types/react": "17.0.34",
"@types/react-dom": "^17.0.11",
"@types/react-geocode": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"babel-plugin-import": "^1.13.3",
"eslint": "7",
"eslint-plugin-eslint-plugin": "^4.0.2",
"eslint-plugin-import": "^2.25.3",
"firebase-tools": "^9.22.0",
"husky": "^7.0.4",
"jest": "^27.4.3",
"jest-junit": "^13.0.0",
"snowpack": "3.7.0",
"snowpack-plugin-markdown": "^1.0.0",
"snowpack-plugin-svgr": "^0.1.2",
"ts-node": "^10.4.0",
"typescript": "4.6.3"
},
"jest-junit": {
"outputDirectory": "build/test-results/test",
"reportTestSuiteErrors": "true"
}
}