forked from Stormbound-Games/stormbound-kitty
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.32 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.32 KB
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
{
"name": "stormbound-kitty",
"version": "0.1.0",
"private": true,
"engines": {
"node": "14.x"
},
"dependencies": {
"@reach/tooltip": "^0.16.2",
"abort-controller": "^3.0.0",
"canvas": "^2.8.0",
"copy-to-clipboard": "^3.3.1",
"discord.js": "^12.5.3",
"dotenv": "^15.0.0",
"downshift": "^6.1.7",
"esm": "^3.2.25",
"express-rate-limit": "^6.2.0",
"express-slow-down": "^1.4.0",
"fela": "^11.6.1",
"fela-enforce-longhands": "^11.7.0",
"fela-plugin-embedded": "^11.7.0",
"fela-plugin-extend": "^11.7.0",
"fela-plugin-fallback-value": "^11.7.0",
"fela-plugin-named-keys": "^11.7.0",
"fela-plugin-responsive-value": "^11.7.0",
"fela-sort-classnames": "^11.7.0",
"fela-sort-media-query-mobile-first": "^11.7.0",
"form-serialize": "^0.7.2",
"framer-motion": "^1.11.1",
"fuse.js": "^6.5.3",
"hook-into-props": "^4.0.1",
"html2canvas": "^1.4.1",
"lodash.clonedeep": "^4.5.0",
"lodash.isequal": "^4.5.0",
"module-alias": "^2.2.2",
"next": "^12.0.9",
"node-fetch": "^3.2.0",
"random-weighted-choice": "^0.1.4",
"react": "^17.0.2",
"react-a11y-dialog": "^6.1.3",
"react-dom": "^17.0.2",
"react-dom-confetti": "^0.2.0",
"react-fela": "^11.7.0",
"react-intersection-observer": "^8.33.1",
"react-masonry-css": "^1.0.16",
"react-scripts": "5.0.0",
"react-select": "^5.2.2",
"recharts": "^2.1.8"
},
"scripts": {
"start": "next dev",
"build:cra": "next build && next-sitemap",
"test": "jest --forceExit",
"bot": "node -r esm bot/cli.js",
"bot:dev": "nodemon -x \"node -r esm\" bot/cli.js --watch src",
"prepare": "husky install && node cypress/support/apply-patches.js"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@cypress/webpack-preprocessor": "^5.11.0",
"cypress": "^9.3.1",
"diff": "^5.0.0",
"eslint": "^8.8.0",
"eslint-config-next": "^12.0.9",
"find-webpack": "^2.2.1",
"husky": "^7.0.4",
"jest": "^27.4.7",
"lint-staged": "^12.3.2",
"mathjax-node": "^2.1.1",
"next-sitemap": "^2.1.6",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"svg2png": "^4.1.1"
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix"
]
}
}