-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
84 lines (84 loc) · 2.05 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
{
"name": "timemap",
"version": "0.1.0",
"description": "",
"homepage": "https://bellingcat.github.io/ukraine-timemap",
"private": true,
"engines": {
"node": "18"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"dev:wsl": "vite --host",
"test": "vitest",
"eslint": "eslint src --ext jsx",
"lint": "prettier --check \"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"lint:fix": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"predeploy": "vite build",
"deploy": "gh-pages -d build"
},
"dependencies": {
"@json2csv/plainjs": "^6.1.2",
"d3": "^7.4.2",
"dayjs": "^1.11.0",
"joi": "^17.1.1",
"leaflet": "^1.0.3",
"marked": "^4.2.5",
"object-hash": "^3.0.0",
"ramda": "^0.28.0",
"react": "^18.0.0",
"react-device-detect": "^2.2.2",
"react-dom": "^18.0.0",
"react-image": "^4.0.3",
"react-redux": "^8.0.5",
"react-tabs": "^6.0.0",
"redux": "^4.0.0",
"redux-thunk": "^2.2.0",
"reselect": "^4.1.7",
"screenfull": "^6.0.2",
"scriptjs": "^2.5.9",
"supercluster": "^7.1.5",
"video-react": "^0.16.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^13.4.0",
"@vitejs/plugin-react": "^3.0.1",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-react": "^7.32.0",
"eslint-plugin-react-hooks": "^4.6.0",
"gh-pages": "^6.0.0",
"husky": "^8.0.3",
"jest-date-mock": "^1.0.8",
"lint-staged": "^13.1.0",
"prettier": "^2.2.1",
"sass": "^1.57.1",
"vite": "^4.0.4",
"vitest": "^0.27.1"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}