-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
67 lines (67 loc) · 1.86 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
{
"name": "ooni-run",
"version": "1.0.0",
"license": "BSD-3-Clause",
"dependencies": {
"@hookform/resolvers": "^3.6.0",
"@next/bundle-analyzer": "^14.2.5",
"@sentry/nextjs": "^8",
"@uiw/react-color-compact": "^2.3.0",
"axios": "^1.7.4",
"cookie": "^0.7.0",
"date-fns": "^3.6.0",
"markdown-to-jsx": "^7.4.7",
"next": "^14.2.5",
"nprogress": "^0.2.0",
"ooni-components": "0.7.0-alpha.12",
"react": "^18.3.1",
"react-content-loader": "^7.0.2",
"react-day-picker": "^9.0.8",
"react-dom": "^18.3.1",
"react-hook-form": "^7.52.2",
"react-icons": "^5.3.0",
"react-intl": "^6.8.2",
"react-outside-click-handler": "^1.3.0",
"swr": "^2.2.5",
"tailwind-merge": "^2.5.2",
"useragent": "^2.3.0",
"yup": "^1.4.0"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@biomejs/biome": "^1.6.4",
"@formatjs/cli": "^6.2.7",
"@playwright/test": "^1.42.1",
"@svgr/webpack": "^8.1.0",
"@types/cookie": "^0.6.0",
"@types/node": "^20.11.25",
"@types/nprogress": "^0.2.3",
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.21",
"@types/react-outside-click-handler": "^1.3.3",
"autoprefixer": "^10.4.20",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"json2csv": "^6.0.0-alpha.2",
"msw": "^2.2.13",
"postcss": "^8.4.41",
"tailwindcss": "^3.4.10",
"typescript": "^5.4.3",
"uglify-js": "^3.17.4"
},
"resolutions": {
"minimist": "1.2.6"
},
"scripts": {
"dev": "next dev -p 3100",
"start": "next start -p 3100",
"build": "next build",
"test": "playwright test",
"build:analyze": "ANALYZE=true next build",
"extract": "node ./scripts/extract '{pages,components,utils}/*.{js,ts,tsx}'",
"script:build-translations": "node ./scripts/build-translations.js"
},
"msw": {
"workerDirectory": "./public"
}
}