-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.44 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": "react-design-pattern",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": ">=18",
"pnpm": ">=7"
},
"version": "0.0.0",
"description": "리액트에 적용하는 GoF 디자인 패턴",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/pagers-org/react-design-pattern.git"
},
"keywords": [
"design-pattern",
"react",
"pagers"
],
"author": {
"name": "InSeong-So",
"email": "[email protected]",
"url": "https://github.com/inseong-so"
},
"devEngines": {
"node": "16.x || 18.x || 19.x || 20.x"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/pagers-org/react-design-pattern/issues"
},
"homepage": "https://github.com/pagers-org/react-design-pattern#readme",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/node": "20.4.4",
"@types/react": "^18.2.22",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"@vitejs/plugin-react": "^4.0.4",
"eslint": "^8.45.0",
"eslint-config-next": "^13.4.12",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-unicorn": "^48.0.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2",
"vite": "^4.4.9"
}
}