-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
75 lines (75 loc) · 2.22 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
{
"name": "spellbook-client-next",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3000",
"build": "next build",
"start": "next start",
"lint": "next lint",
"tsc": "tsc",
"cy:run": "cypress run",
"cy:open": "cypress open",
"prettier": "prettier --write .",
"test:integration": "NODE_ENV=production yarn start & wait-on http://localhost:3000 && yarn run cy:run",
"prepare": "husky"
},
"lint-staged": {
"*.{js,ts,vue}": "eslint",
"*.{css,vue}": "stylelint"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"@spacecowmedia/spellbook-client": "^3.12.0",
"canvas": "^2.11.2",
"debounce": "^2.2.0",
"markdown-to-jsx": "^7.5.0",
"next": "^15.0.3",
"nextjs-progressbar": "^0.0.16",
"pluralize": "^8.0.0",
"react": "^18.3.1",
"react-confirm-alert": "^3.0.6",
"react-cookie": "^7.2.2",
"react-dom": "^18.3.1",
"react-markdown": "^9.0.1",
"react-select": "^5.8.2",
"react-tooltip": "^5.28.0",
"remark-gfm": "^4.0.0",
"remark-rehype": "^11.1.1",
"scryfall-client": "^0.23.0",
"sharp": "^0.33.5",
"use-debounce": "^10.0.4"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/compat": "^1.2.2",
"@scryfall/api-types": "^1.0.0-alpha.4",
"@types/gtag.js": "^0.0.20",
"@types/node": "^22.9.0",
"@types/pluralize": "^0.0.33",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"autoprefixer": "^10.4.20",
"cypress": "^13.15.2",
"eslint": "^9.14.0",
"eslint-config-next": "^15.0.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-check-file": "^2.8.0",
"eslint-plugin-cypress": "^4.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"sass": "^1.80.6",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3",
"wait-on": "^8.0.1"
}
}