-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.67 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
59
60
61
62
63
64
{
"name": "fi-fi",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap --config sitemap.config.js",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit --skipLibCheck true",
"prepare": "husky install",
"new-service": "hygen services new"
},
"dependencies": {
"@emotion/css": "^11.10.0",
"@emotion/server": "^11.10.0",
"@lubycon/logger": "^1.11.14",
"@lubycon/react": "^1.26.2",
"browser-toolkit": "^1.2.13",
"date-fns": "^2.29.3",
"next": "12.2.5",
"next-sitemap": "^3.1.21",
"node-html-parser": "^6.1.1",
"num-to-korean": "^0.5.2",
"open-color": "^1.9.1",
"quantumic-design": "^1.7.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-query": "^3.39.2",
"react-responsive": "^9.0.0-beta.10",
"reset-css": "^5.0.1",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^2.1.3",
"temen": "^1.38.0"
},
"devDependencies": {
"@types/node": "18.7.6",
"@types/react": "18.0.17",
"@types/react-dom": "18.0.6",
"@typescript-eslint/eslint-plugin": "^5.34.0",
"@typescript-eslint/parser": "^5.34.0",
"eslint": "^8.22.0",
"eslint-config-next": "^12.2.5",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"hygen": "^6.2.11",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"typescript": "4.7.4"
},
"lint-staged": {
"**/*.{ts,tsx,js,jsx}": [
"prettier --write",
"git add"
],
"**/*.{ts,tsx}": [
"eslint --fix",
"git add"
]
}
}