-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
99 lines (99 loc) · 3.17 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
{
"name": "ooni-explorer",
"version": "2.9.0",
"author": "Open Observatory of Network Interference (OONI) <[email protected]>",
"license": "BSD-3-Clause",
"main": "index.js",
"repository": "https://github.com/ooni/explorer",
"dependencies": {
"@cassiozen/usestatemachine": "^1.0.1",
"@hookform/resolvers": "^3.3.4",
"@nivo/bar": "^0.80.0",
"@nivo/calendar": "^0.80.0",
"@nivo/core": "^0.80.0",
"@nivo/funnel": "^0.80.0",
"@nivo/line": "^0.80.0",
"@nivo/tooltip": "0.80.0",
"@sentry/nextjs": "^8.28.0",
"@tanstack/react-table": "^8.11.6",
"axios": "^1.7.4",
"buffer-from": "^1.1.2",
"country-util": "^0.2.0",
"date-fns": "^3.2.0",
"dayjs": "^1.11.10",
"deepmerge": "^4.3.1",
"flag-icons": "^7.1.0",
"html-validate": "^8.9.1",
"lodash.debounce": "^4.0.8",
"lru-cache": "^10.1.0",
"markdown-to-jsx": "^7.4.0",
"next": "^14.2.10",
"nprogress": "^0.2.0",
"ooni-components": "0.7.0-alpha.11",
"pretty-ms": "^8.0.0",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-content-loader": "^6.2.1",
"react-day-picker": "^8.10.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.52.0",
"react-icons": "^5.2.1",
"react-intl": "^6.6.8",
"react-json-view": "^1.21.3",
"react-outside-click-handler": "^1.3.0",
"react-table": "^7.8.0",
"react-toastify": "^10.0.2",
"react-virtual": "^2.10.4",
"react-virtualized": "^9.22.5",
"react-window": "^1.8.10",
"regenerator-runtime": "^0.14.1",
"swr": "^2.2.5",
"tailwind-merge": "^2.5.2",
"use-clipboard-copy": "^0.2.0",
"victory": "32.0.2",
"yup": "^1.3.3"
},
"resolutions": {
"jackspeak": "2.1.1"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@next/bundle-analyzer": "^14.2.1",
"@svgr/webpack": "^8.1.0",
"@testing-library/cypress": "^10.0.1",
"@welldone-software/why-did-you-render": "^8.0.1",
"autoprefixer": "^10.4.19",
"cypress": "^13.6.2",
"glob": "^10.3.10",
"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": "^3.4.15"
},
"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",
"cy:run": "NODE_ENV=test yarn run dev & cypress open",
"cypress:run": "cypress run",
"test:e2e": "yarn build:test && start-server-and-test start:testServer http://localhost:3100 cypress:run",
"test": "yarn run test:e2e",
"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"
}
}