-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
77 lines (77 loc) · 2.51 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
67
68
69
70
71
72
73
74
75
76
77
{
"name": "chanyeong_front",
"version": "1.0.0",
"description": "chanyeong web frontend server",
"main": "server.js",
"scripts": {
"dev": "next -p 3060",
"build": "next build",
"build:test": "ANALYZE=true next build",
"start": "next start -p 3333",
"pretypes": "graphql-codegen",
"types": "apollo codegen:generate src/types/api.d.ts --queries=src/queries/**/*.queries.ts --addTypename --localSchemaFile=schema.json --target typescript --outputFlat",
"storybook": "start-storybook -p 6006 -c .storybook"
},
"keywords": [],
"author": "chanyeong",
"license": "MIT",
"dependencies": {
"@apollo/client": "^3.3.6",
"@next/bundle-analyzer": "^10.0.5",
"@toast-ui/editor-plugin-color-syntax": "1.0.0",
"@toast-ui/react-editor": "2.2.0",
"@types/graphql": "^14.5.0",
"axios": "0.21.1",
"compression-webpack-plugin": "4.0.0",
"crypto-js": "4.0.0",
"disqus-react": "1.0.10",
"dotenv-webpack": "1.8.0",
"graphql": "^15.0.0",
"next": "^12.0.8",
"next-transpile-modules": "^8.0.0",
"react": "^18.2.0",
"react-cookie": "^4.0.3",
"react-dom": "^18.2.0",
"react-hook-form": "^6.14.0",
"react-markdown": "^5.0.0",
"react-slick": "^0.26.1",
"react-syntax-highlighter": "^15.4.3",
"react-text-loop": "^2.3.0",
"remove-markdown": "0.3.0",
"slick-carousel": "^1.8.1",
"styled-components": "^5.3.5",
"styled-reset": "^4.4.1"
},
"devDependencies": {
"@graphql-codegen/cli": "^1.19.4",
"@graphql-codegen/introspection": "^1.18.1",
"@storybook/addon-actions": "^6.0.28",
"@storybook/addon-backgrounds": "^6.0.28",
"@storybook/addon-essentials": "^6.0.28",
"@storybook/addon-knobs": "^6.0.28",
"@storybook/addon-links": "^6.0.28",
"@storybook/react": "^6.0.28",
"@types/node": "^14.0.11",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "2.21.0",
"@typescript-eslint/parser": "2.21.0",
"babel-plugin-styled-components": "^2.0.7",
"eslint": "6.8.0",
"eslint-config-airbnb-base": "14.0.0",
"eslint-config-prettier": "6.10.0",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-react": "7.18.3",
"eslint-plugin-react-hooks": "2.4.0",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"typescript": "^4.5.5",
"webpack": "^4.43.0"
},
"resolutions": {
"styled-components": "^5"
}
}