-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·38 lines (38 loc) · 933 Bytes
/
package.json
File metadata and controls
executable file
·38 lines (38 loc) · 933 Bytes
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
{
"name": "myapp",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"tidy": "prettier --check 'src/**/*.{ts,tsx,js}'",
"tidy:fix": "prettier --write 'src/**/*.{ts,tsx,js}'"
},
"dependencies": {
"@types/jest": "^29.5.14",
"@types/styled-components": "^5.1.34",
"html-to-image": "^1.11.13",
"next": "15.2.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^7.4.1",
"recoil": "^0.7.7",
"styled-components": "^6.1.16"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^22.13.14",
"@types/react": "^19.0.12",
"@types/react-dom": "^19.0.4",
"jest": "^29.7.0",
"prettier": "3.5.3",
"tailwindcss": "^4",
"typescript": "^5.8.2",
"yarn": "^1.22.22"
},
"prettier": {
"tabWidth": 2
}
}