-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.59 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
{
"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"
},
"dependencies": {
"next": "15.1.6",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-icons": "^5.0.1",
"react-select": "^5.8.2",
"react-wavify": "^1.10.0",
"sharp": "^0.33.2"
},
"devDependencies": {
"@eslint/compat": "^1.2.2",
"@playwright/test": "^1.42.1",
"@tailwindcss/postcss": "^4.0.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@trivago/prettier-plugin-sort-imports": "^5.0.0",
"@types/jest": "^29.5.12",
"@types/node": "^22.0.0",
"@types/react": "19.0.8",
"@types/react-dom": "19.0.3",
"axios": "^1.6.7",
"eslint": "^9.0.0",
"eslint-config-next": "15.1.6",
"eslint-config-prettier": "^10.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^4.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}