-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
63 lines (63 loc) · 1.84 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
{
"name": "sublinks-frontend",
"version": "0.1.0",
"private": true,
"engines": {
"npm": ">=9.0.0",
"node": ">=20.0.0 <21"
},
"scripts": {
"dev": "next dev",
"dev:docker": "docker compose -f ./docker/docker-compose.frontend.yml up",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"test:unit": "jest",
"test:unit:watch": "jest --watch"
},
"dependencies": {
"@heroicons/react": "^2.1.5",
"@material-tailwind/react": "^2.1.10",
"@uiw/react-md-editor": "^4.0.4",
"classnames": "^2.5.1",
"cross-fetch": "^4.0.0",
"js-cookie": "^3.0.5",
"next": "14.2.15",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^9.0.1",
"react-toastify": "^10.0.6",
"remark-gfm": "^4.0.0",
"sublinks-js-client": "^0.0.18",
"sublinks-markdown": "^0.1.4"
},
"devDependencies": {
"@stylistic/eslint-plugin-js": "^2.10.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.14",
"@types/js-cookie": "^3.0.6",
"@types/node": "^22.8.7",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-next": "14.2.15",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^4.6.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.14",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
}
}