-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
66 lines (66 loc) · 2.11 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
65
66
{
"name": "pyconkr-2023-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "cp ./.env.dev ./.env && next dev",
"dev:windows": "copy .\\.env.dev .\\.env && next dev",
"dev:prod": "cp ./.env.prod ./.env && next dev",
"dev:prod_windows": "copy .\\.env.prod .\\.env && next dev",
"build": "next build && next export",
"start": "next start",
"lint": "next lint",
"deploy": "next build && next start",
"deploy:dev": "cp ./.env.dev ./.env && next build && next start",
"deploy:prod": "cp ./.env.prod ./.env && next build && next start",
"lint-staged": "lint-staged",
"typecheck": "tsc --noEmit --skipLibCheck",
"prepare": "husky install"
},
"dependencies": {
"@egjs/flicking-plugins": "^4.7.0",
"@egjs/react-flicking": "^4.10.6",
"@stitches/react": "^1.2.8",
"axios": "^1.3.4",
"lodash-es": "^4.17.21",
"next": "13.1.5",
"next-themes": "^0.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.43.0",
"react-markdown": "^8.0.5",
"react-query": "^3.39.3",
"react-router-dom": "^6.8.0",
"react-table": "^7.8.0",
"recoil": "^0.7.6",
"recoil-nexus": "^0.4.0",
"recoil-persist": "^4.2.0",
"remark-gfm": "^3.0.1"
},
"devDependencies": {
"@svgr/webpack": "^6.5.1",
"@types/gtag.js": "^0.0.12",
"@types/lodash": "^4.14.195",
"@types/lodash-es": "^4.17.7",
"@types/node": "18.11.18",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"@types/react-table": "^7.7.14",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"eslint": "^8.33.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "13.1.5",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.0",
"lint-staged": "^13.1.2",
"prettier": "^2.8.3",
"typescript": "4.9.4"
}
}