-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.68 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
{
"name": "shiny-poems",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"test": "jest",
"test:update": "jest -u",
"test:e2e": "playwright test ./tests/e2e",
"vrt": "playwright test ./tests/vrt",
"vrt:update": "PROD=1 playwright test --update-snapshots tests/vrt/",
"fmt": "prettier --write .",
"fmt:data": "prettier --write ./data/*",
"update:poem": "ts-node ./tools/update-poem-data.ts",
"update:color": "ts-node ./tools/update-color-data.ts",
"poem:add": "cd tools/poem-admin && pnpm install && pnpm dev"
},
"dependencies": {
"next": "16.2.6",
"react": "19.2.6",
"react-dom": "19.2.6",
"react-icons": "^5.5.0",
"react-select": "^5.10.2",
"react-wavify": "^1.11.1",
"sharp": "^0.34.5"
},
"devDependencies": {
"@eslint/compat": "^2.0.0",
"@playwright/test": "^1.57.0",
"@tailwindcss/postcss": "^4.1.18",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@trivago/prettier-plugin-sort-imports": "^6.0.0",
"@types/jest": "^30.0.0",
"@types/node": "^25.0.1",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"axios": "^1.13.2",
"eslint": "^10.0.0",
"eslint-config-next": "16.2.6",
"eslint-config-prettier": "^10.1.8",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"postcss": "^8.5.6",
"prettier": "^3.7.4",
"prettier-plugin-tailwindcss": "^0.8.0",
"tailwindcss": "^4.1.18",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}