-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
80 lines (80 loc) · 2.67 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
{
"name": "osrs-dps",
"version": "0.1.0",
"private": true,
"author": "Jayden Bailey (https://weirdgloop.org)",
"scripts": {
"dev": "next dev",
"build": "next build",
"build-staging": "env-cmd -f .env.staging next build",
"build-docker": "docker build -t weirdgloop/osrs-dps-calc .",
"build-docker-scraper": "docker build -t weirdgloop/osrs-dps-calc:scraper --target=scraper-dev .",
"start": "next start",
"lint": "next lint",
"lint-fast": "eslint",
"fmt": "next lint --fix",
"analyse": "ANALYSE=true next build",
"test": "jest",
"cdn-docker": "yarn build-docker-scraper && docker run --rm -it -v $(pwd)/cdn:/srv/cdn -v $(pwd)/src/lib/EquipmentAliases.ts:/srv/src/lib/EquipmentAliases.ts weirdgloop/osrs-dps-calc:scraper",
"cdn-dispatch": "gh workflow run regenerate.yml"
},
"dependencies": {
"@headlessui/react": "^1.7.18",
"@headlessui/tailwindcss": "^0.2.0",
"@tabler/icons-react": "^2.47.0",
"axios": "^1.7.4",
"d3-array": "^3.2.4",
"downshift": "^8.3.1",
"fuzzbunny": "^1.0.1",
"localforage": "^1.10.0",
"lodash.isequal": "^4.5.0",
"lodash.mergewith": "^4.6.2",
"mobx": "^6.12.0",
"mobx-react-lite": "^4.0.5",
"next": "^14.1.1",
"next-themes": "^0.2.1",
"react": "^18.2.0",
"react-animate-height": "^3.2.3",
"react-dom": "^18.2.0",
"react-toastify": "^10.0.4",
"react-tooltip": "^5.26.0",
"react-virtuoso": "^4.6.3",
"recharts": "patch:recharts@npm%3A2.10.3#~/.yarn/patches/recharts-npm-2.10.3-179add6aaa.patch"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@next/bundle-analyzer": "^14.1.0",
"@tailwindcss/forms": "^0.5.7",
"@types/d3-array": "^3.2.1",
"@types/lodash.isequal": "^4.5.8",
"@types/lodash.mergewith": "^4.6.9",
"@types/node": "20.10.6",
"@types/react": "18.2.7",
"@types/react-dom": "18.2.4",
"@types/react-window": "^1.8.5",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"autoprefixer": "^10.4.17",
"env-cmd": "^10.1.0",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-next": "^14.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss-import": "^16.0.0",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"type-fest": "^4.10.2",
"typescript": "^5.3.3"
},
"resolutions": {
"@types/react": "18.2.7"
},
"packageManager": "yarn@4.1.0"
}