forked from ooni/explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 3.47 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
100
101
102
103
104
105
106
107
108
{
"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",
"@datapunt/matomo-tracker-react": "^0.5.1",
"@fontsource/fira-sans": "^4.5.9",
"@hookform/resolvers": "^3.3.1",
"@nivo/bar": "^0.80.0",
"@nivo/calendar": "^0.80.0",
"@nivo/core": "^0.80.0",
"@nivo/funnel": "^0.80.0",
"@nivo/heatmap": "^0.80.0",
"@nivo/line": "^0.80.0",
"@nivo/tooltip": "0.80.0",
"@sentry/nextjs": "^7.61.1",
"@tanstack/react-table": "^8.9.3",
"axios": "^0.27.2",
"buffer-from": "^1.1.2",
"country-util": "^0.2.0",
"date-fns": "^2.29.1",
"dayjs": "^1.11.5",
"deepmerge": "^4.2.2",
"flag-icons": "^6.11.1",
"lodash.debounce": "^4.0.8",
"lru-cache": "^7.14.1",
"markdown-to-jsx": "^7.1.9",
"next": "^12.3.1",
"nprogress": "^0.2.0",
"ooni-components": "0.6.0-alpha.1",
"pretty-ms": "^8.0.0",
"prop-types": "15.8.1",
"react": "17.0.2",
"react-content-loader": "^6.2.0",
"react-day-picker": "^8.6.0",
"react-dom": "17.0.2",
"react-hook-form": "^7.47.0",
"react-icons": "^4.11.0",
"react-intl": "6.4.7",
"react-json-view": "^1.21.3",
"react-outside-click-handler": "^1.3.0",
"react-portal-tooltip": "^2.4.7",
"react-resize-detector": "^7.1.2",
"react-select": "^5.7.4",
"react-table": "^7.8.0",
"react-virtual": "^2.10.4",
"react-virtualized": "^9.22.3",
"react-window": "^1.8.7",
"styled-components": "^6.0.8",
"swr": "^2.2.2",
"use-clipboard-copy": "^0.2.0",
"victory": "^32.0.2",
"yup": "^1.2.0"
},
"resolutions": {
"js-yaml": "^3.13.1",
"https-proxy-agent": "^2.2.3",
"minimist": "^1.2.6",
"node-fetch": "^2.6.7",
"lodash": "^4.17.21"
},
"devDependencies": {
"@svgr/webpack": "^8.1.0",
"@testing-library/cypress": "^10.0.0",
"@welldone-software/why-did-you-render": "^7.0.1",
"cypress": "^12.6.0",
"cypress-recurse": "^1.27.0",
"eslint": "^8.43.0",
"eslint-config-next": "^13.4.7",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-cypress": "^2.13.3",
"eslint-plugin-import": "^2.27.5",
"glob": "^8.0.3",
"imap-simple": "^5.1.0",
"jsdom": "^22.1.0",
"msw": "^1.3.0",
"mustache": "^4.2.0",
"prettier": "^2.8.8",
"start-server-and-test": "^2.0.0"
},
"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"
}
}