This repository has been archived by the owner on Sep 18, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
103 lines (103 loc) · 3.1 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
{
"name": "fgo-tools",
"version": "0.1.0",
"private": true,
"packageMananger": "pnpm@^7.30.3",
"scripts": {
"prepare": "simple-git-hooks && node src/svgo/build.mjs",
"prepare:cache": "tsx src/atlas-api/prepare-script.ts",
"build:svgo": "node src/svgo/build.mjs --force",
"build:schema": "tsx src/schema/generate-json-schema.ts && prettier -w src/schema/json",
"check-event": "tsx src/events/check-event-script.ts",
"find": "tsx src/utils/find-script.ts",
"prebuild": "tsx src/prebuild/prebuild.ts && pnpm build:svgo",
"build": "node --version && next build",
"dev": "pnpm prebuild && next dev",
"dev:types": "tsc --watch",
"start": "next start",
"lint": "eslint .",
"lint:strict": "eslint --max-warnings 0 .",
"format": "prettier -w .",
"format:check": "prettier -c .",
"typecheck": "tsc --noEmit",
"test:code": "jest --verbose",
"test:data": "tsx src/schema/check-script.ts",
"test": "pnpm prepare:cache && pnpm test:code && pnpm test:data --all"
},
"simple-git-hooks": {
"pre-commit": "pnpm nano-staged"
},
"nano-staged": {
"**/*.{js,jsx,cjs,mjs,ts,tsx,css,json,md,yml}": [
"prettier -w"
],
"**/!(*inkscape).svg": [
"svgo"
]
},
"browserslist": [
"last 3 versions",
">0.2% and not dead"
],
"dependencies": {
"@atlasacademy/api-connector": "^4.0.10",
"@atlasacademy/api-descriptor": "^2.0.12",
"@babel/core": "^7.22.11",
"@csstools/postcss-global-data": "^2.1.0",
"@foxkit/list": "^1.2.0",
"@foxkit/node-util": "^0.6.0",
"@foxkit/util": "^0.6.2",
"@nanostores/persistent": "^0.9.1",
"@nanostores/react": "0.7.1",
"@svgo/jsx": "^0.4.2",
"@tanstack/react-query": "^4.33.0",
"@trpc/client": "^10.38.1",
"@trpc/next": "^10.38.1",
"@trpc/react-query": "^10.38.1",
"@trpc/server": "^10.38.1",
"@types/node": "^18.17.14",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"classcat": "^5.0.4",
"commander": "^11.0.0",
"fast-fuzzy": "^1.12.0",
"flag-icons": "^6.11.0",
"modern-normalize": "^2.0.0",
"nanostores": "^0.9.3",
"next": "13.4.19",
"picocolors": "^1.0.0",
"postcss": "^8.4.29",
"postcss-focus": "^7.0.0",
"postcss-preset-env": "^9.1.3",
"prettier": "^3.0.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"scheduler": "^0.23.0",
"spacetime": "^7.4.7",
"svgo": "^3.0.2",
"tsx": "^3.12.8",
"typescript": "5.2.2",
"use-context-selector": "^1.4.1",
"yaml": "^2.3.2",
"zod": "^3.22.2",
"zod-to-json-schema": "^3.21.4"
},
"devDependencies": {
"@types/jest": "^29.5.4",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"eslint": "8.48.0",
"eslint-config-foxkit": "^3.0.2",
"eslint-config-next": "13.4.19",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"jest": "^29.6.4",
"jest-environment-jsdom": "^29.6.4",
"nano-staged": "^0.8.0",
"simple-git-hooks": "^2.9.0"
},
"engines": {
"node": "18.x"
}
}