generated from gitgitWi/nodejs-monorepo-devcontainer-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.62 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
54
55
56
57
58
{
"name": "nextjs-template",
"version": "1.0.0",
"author": {
"name": "위정훈 (gitgitWi)",
"email": "[email protected]"
},
"readme": "https://github.com/gitgitWi/nextjs-teamplate/blob/main/README.md",
"qna": "https://github.com/gitgitWi/nextjs-teamplate/discussions",
"keywords": [
"nextjs",
"typescript",
"pnpm",
"react-query",
"tailwindcss"
],
"license": "MIT",
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "next dev",
"build-and-start": "next build && next start",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write ./ --config .prettierrc",
"clean": "clean:build && rm -rf node_modules",
"clean:build": "rm -rf .next",
"preinstall": "corepack enable && corepack prepare pnpm@latest --activate && npx only-allow pnpm",
"prebuild": "npx only-allow pnpm"
},
"devDependencies": {
"typescript-plugin-css-modules": "^5.0.0"
},
"dependencies": {
"@lukemorales/query-key-factory": "^1.2.0",
"@tanstack/react-query": "^4.28.0",
"@types/node": "^18.15.11",
"@types/react": "^18.0.33",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.36.0",
"eslint-config-next": "^13.3.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"next": "^13.3.0",
"postcss": "^8.4.21",
"prettier": "^2.8.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.61.0",
"tailwindcss": "^3.3.1",
"typescript": "^5.0.2",
"zustand": "^4.3.7"
}
}