-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.37 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
{
"name": "kimpoo",
"packageManager": "pnpm@8.4.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --watch",
"postinstall": "husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"coin": "curl -X GET 'https://api.coingecko.com/api/v3/search?locale=ko' | jq -c '{ coins: [.coins[] | { symbol: .symbol, thumb: .thumb } ] }' > public/json/coins.json"
},
"dependencies": {
"@tanstack/react-query": "^4.29.12",
"next": "^13.4.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sharp": "^0.32.1",
"ts-jest": "^29.1.1",
"zustand": "^4.3.6"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/gtag.js": "^0.0.12",
"@types/jest": "^29.5.2",
"@types/node": "18.13.0",
"@types/react": "^18.2.9",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"autoprefixer": "^10.4.13",
"eslint": "8.34.0",
"eslint-config-next": "13.1.6",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-unicorn": "^47.0.0",
"husky": "^8.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.6.0",
"lint-staged": "^13.1.1",
"pinst": "^3.0.0",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"tailwindcss": "^3.2.7",
"typescript": "^5.1.3"
}
}