-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.07 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.07 KB
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
{
"name": "ooni-explorer",
"version": "2.9.0",
"author": "Open Observatory of Network Interference (OONI) <contact@openobservatory.org>",
"license": "BSD-3-Clause",
"main": "index.js",
"repository": "https://github.com/ooni/explorer",
"dependencies": {
"@cassiozen/usestatemachine": "^1.0.1",
"@date-fns/utc": "^2.1.1",
"@formatjs/intl-displaynames": "^7.3.1",
"@hookform/resolvers": "^5.2.2",
"@microlink/react-json-view": "^1.31.14",
"@nivo/bar": "^0.99.0",
"@nivo/calendar": "^0.99.0",
"@nivo/core": "^0.99.0",
"@nivo/line": "^0.99.0",
"@nivo/tooltip": "^0.99.0",
"@sentry/nextjs": "^10.43.0",
"@tanstack/react-table": "^8.21.3",
"@tanstack/react-virtual": "^3.13.23",
"axios": "^1.13.5",
"buffer-from": "^1.1.2",
"country-util": "^0.2.0",
"date-fns": "^4.1.0",
"dayjs": "^1.11.20",
"deepmerge": "^4.3.1",
"flag-icons": "^7.5.0",
"html-validate": "^10.11.2",
"lodash.debounce": "^4.0.8",
"lru-cache": "^11.2.7",
"markdown-to-jsx": "^9.7.13",
"next": "^16.2.1",
"nprogress": "^0.2.0",
"ooni-components": "0.8.0-alpha.3",
"pretty-ms": "^9.3.0",
"prop-types": "^15.8.1",
"react": "^19.2.4",
"react-content-loader": "^7.1.2",
"react-day-picker": "^9.14.0",
"react-dom": "^19.2.4",
"react-hook-form": "^7.55.0",
"react-icons": "^5.6.0",
"react-intersection-observer": "^10.0.3",
"react-intl": "^10.1.0",
"react-outside-click-handler": "^1.3.0",
"react-toastify": "^11.0.5",
"react-virtualized": "^9.22.6",
"regenerator-runtime": "^0.14.1",
"swr": "^2.4.1",
"tailwind-merge": "^3.5.0",
"use-clipboard-copy": "^0.2.0",
"yup": "^1.7.1"
},
"devDependencies": {
"@biomejs/biome": "^2.4.6",
"@playwright/test": "^1.57.0",
"@tailwindcss/postcss": "^4.2.2",
"@types/node": "^22.5.4",
"@types/nprogress": "^0.2.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@welldone-software/why-did-you-render": "^10.0.1",
"glob": "^10.5.0",
"imap-simple": "^5.1.0",
"jsdom": "^23.2.0",
"msw": "^2.1.0",
"mustache": "^4.2.0",
"postcss": "^8.4.38",
"start-server-and-test": "^2.0.3",
"tailwindcss": "^4.2.2",
"typescript": "^5.9.3"
},
"scripts": {
"dev": "next dev -p 3100",
"debug": "WDYR=1 NODE_OPTIONS='--inspect' next dev -p 3100",
"start": "next start -p 3100",
"build": "next build",
"export": "next export",
"lint": "next lint",
"start:testServer": "NODE_ENV=test yarn start",
"build:test": "NODE_ENV=test yarn build",
"test": "playwright test",
"script:build-countries": "node scripts/build-countries.js",
"script:build-translations": "node ./scripts/build-translations.js",
"script:extract-i18n-keys": "yarn build && node ./scripts/extract-react-intl-keys.js",
"git:getReleasesAndTags": "git tag --points-at HEAD",
"git:getCommitSHA": "git rev-parse HEAD",
"git:getCommitSHA:short": "git rev-parse --short HEAD",
"git:getCommitRef": "git symbolic-ref HEAD"
},
"msw": {
"workerDirectory": "public"
}
}