-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
113 lines (113 loc) · 3.25 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
109
110
111
112
113
{
"name": "info-pride",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"build:analyze": "NODE_OPTIONS='--max-old-space-size=12288' ANALYZE=1 next build",
"start": "next start",
"format": "prettier --write **/*.ts{,x}",
"lint": "next lint",
"lint:fix": "next lint --fix",
"test": "mocha",
"test:watch": "mocha -w",
"dataset:bv": "scripts/buildAndValidate.sh",
"dataset:type": "scripts/schemaToType.sh",
"dataset:ajv": "ajv",
"t:build": "turbo build lint",
"knip": "knip"
},
"dependencies": {
"@babel/core": "^7.24.6",
"@babel/preset-env": "^7.24.6",
"@fortawesome/fontawesome-svg-core": "^6.5.2",
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@mantine/core": "^7.10.1",
"@mantine/dates": "^7.10.1",
"@mantine/form": "^7.10.1",
"@mantine/hooks": "^7.10.1",
"@mantine/notifications": "^7.10.1",
"@pixi-spine/base": "^4.0.3",
"@pixi-spine/loader-3.8": "^4.0.3",
"@pixi-spine/runtime-3.8": "^4.0.3",
"@pixi/assets": "^7.4.2",
"@pixi/unsafe-eval": "^7.4.2",
"@sentry/browser": "^8.7.0",
"@sentry/nextjs": "^8.7.0",
"@vercel/speed-insights": "^1.0.11",
"autoprefixer": "^10.4.19",
"base58": "^2.0.1",
"cheerio": "1.0.0-rc.12",
"cookies-next": "^4.2.1",
"d3": "^7.9.0",
"dayjs": "^1.11.11",
"html-to-image": "^1.11.11",
"jotai": "^2.8.2",
"jotai-location": "^0.5.5",
"lodash": "^4.17.21",
"next": "14.2.3",
"next-intl": "~3.9.5",
"nextjs-progressbar": "^0.0.16",
"node-html-parser": "^6.1.13",
"pixi.js": "^7.4.2",
"postcss": "^8.4.38",
"postcss-preset-mantine": "^1.15.0",
"postcss-simple-vars": "^7.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-query": "^3.39.3",
"rfdc": "^1.3.1",
"screenfull": "^6.0.2",
"sharp": "^0.33.4",
"tailwindcss": "^3.4.3"
},
"devDependencies": {
"@hoshimei/adv": "^0.8.1",
"@next/bundle-analyzer": "^14.2.3",
"@sentry/cli": "^2.32.1",
"@types/chai": "^4.3.16",
"@types/d3": "^7.4.3",
"@types/lodash": "^4.17.4",
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.13",
"@types/react": "18.3.3",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"ajv-cli": "^5.0.0",
"chai": "^5.1.1",
"esbuild-register": "^3.5.0",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.3",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"hoshimi-types": "^2.14.1",
"json-schema-to-typescript": "^14.0.4",
"knip": "^5.17.3",
"mocha": "^10.4.0",
"prettier": "^3.2.5",
"tsconfig-paths": "^4.2.0",
"tslib": "^2.6.2",
"turbo": "^1.13.3",
"typescript": "5.4.5",
"wtf_wikipedia": "^10.3.1"
},
"imports": {
"#data/*": "data/*.js",
"#components/*": "components/*.js",
"#utils/*": "utils/*.js",
"#api/*": "pages/api/*.js",
"#locales/*": "locales/*.js"
},
"nextBundleAnalysis": {
"budget": 358400,
"budgetPercentIncreaseRed": 20,
"minimumChangeThreshold": 0,
"showDetails": true
}
}