-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
102 lines (102 loc) · 3.02 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
{
"name": "stormbound-kitty",
"version": "0.1.0",
"private": true,
"engines": {
"node": "20.x"
},
"scripts": {
"modulify": "node bin/modulify.mjs",
"start": "next dev",
"build-site": "next build && next-sitemap",
"test": "npm run modulify && jest --forceExit",
"bot": "npm run modulify && node bot/cli.js",
"bot:refresh": "npm run modulify && node bot/deploy-commands.js",
"bot:dev": "npm run modulify && nodemon bot/cli.js --watch src --watch bot",
"prepare": "husky",
"revalidate": "node --experimental-fetch -r dotenv/config bin/revalidate.js",
"check-decks": "npm run modulify && node bin/deck-checker.js",
"export-cards": "npm run modulify && node bin/export-cards.js"
},
"dependencies": {
"@discordjs/rest": "^2.3.0",
"@portabletext/react": "^3.1.0",
"@reach/tooltip": "^0.18.0",
"@sanity/client": "^6.9.3",
"@vercel/analytics": "^1.3.1",
"canvas": "^2.11.2",
"copy-to-clipboard": "^3.3.3",
"discord.js": "^14.17.3",
"dotenv": "^16.3.1",
"express-rate-limit": "^7.4.0",
"express-slow-down": "^1.6.0",
"fela": "^12.2.1",
"fela-enforce-longhands": "^12.2.1",
"fela-plugin-embedded": "^12.2.1",
"fela-plugin-extend": "^12.2.1",
"fela-plugin-fallback-value": "^12.2.1",
"fela-plugin-named-keys": "^12.2.1",
"fela-plugin-responsive-value": "^12.2.1",
"fela-sort-classnames": "^12.2.1",
"fela-sort-media-query-mobile-first": "^12.2.1",
"form-serialize": "^0.7.2",
"framer-motion": "^11.11.17",
"fuse.js": "^7.0.0",
"html2canvas": "^1.4.1",
"isomorphic-unfetch": "^3.1.0",
"lru-cache": "^10.4.0",
"next": "^15.1.4",
"next-sitemap": "^4.2.3",
"random-weighted-choice": "^0.1.4",
"react": "^18.3.1",
"react-a11y-dialog": "^7.3.0",
"react-dom": "^18.3.1",
"react-dom-confetti": "^0.2.0",
"react-fela": "^12.2.1",
"react-intersection-observer": "^9.13.1",
"react-masonry-css": "^1.0.16",
"react-select": "^5.8.3",
"recharts": "^2.13.3",
"speakingurl": "^14.0.1"
},
"browserslist": [
">0.2%",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@cypress/webpack-preprocessor": "^6.0.2",
"@next/bundle-analyzer": "^14.0.4",
"@svgr/webpack": "^8.1.0",
"cypress": "^13.16.0",
"cypress-localstorage-commands": "^2.2.7",
"diff": "^5.1.0",
"eslint": "^8.56.0",
"eslint-config-next": "^15.1.4",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"nodemon": "^3.0.2",
"npx-import": "^1.1.4",
"prettier": "^3.3.3",
"replace-in-file": "^8.1.0",
"webpack": "^5.94.0"
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix"
],
"*.md": [
"prettier --write"
]
},
"imports": {
"#api/*": "./src/api/*.js",
"#components/*": "./src/components/*/index.js",
"#constants/*": "./src/constants/*.js",
"#helpers/*": "./src/helpers/*/index.js",
"#hooks/*": "./src/hooks/*.js"
}
}