-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.52 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
{
"name": "mint-leaf",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "npm run test:unit",
"test:unit": "vitest run",
"test:browser": "playwright test",
"test:all": "npm run test:unit && npm run test:browser && npm run lint && npm run build"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@fontsource/kumbh-sans": "^5.3.0",
"@fontsource/roboto": "^5.3.0",
"@types/antd": "^1.0.0",
"@types/cookie": "^0.6.0",
"@types/jsonwebtoken": "^9.0.6",
"@types/lodash": "^4.14.202",
"@types/node-fetch": "^2.6.11",
"@xivapi/js": "^0.4.5",
"antd": "^5.14.2",
"colorthief": "^2.4.0",
"cookie": "^0.6.0",
"jsonwebtoken": "^9.0.2",
"ky": "1",
"lodash": "^4.17.21",
"next": "^14.1.1",
"next-auth": "^5.0.0-beta.18",
"node-fetch": "^2.6.1",
"react": "^18",
"react-dom": "^18",
"react-transition-group": "^4.4.5",
"sharp": "^0.33.4"
},
"devDependencies": {
"@playwright/test": "^1.62.1",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.1.0",
"postcss": "^8",
"react-select": "^5.8.0",
"styled-components": "^6.1.9",
"tailwindcss": "^3.3.0",
"typescript": "^5",
"vitest": "^2.1.9"
}
}