-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 3 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "work-at",
"version": "1.0.0",
"description": "",
"main": "index.js",
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"scripts": {
"type-check": "tsc --build ./tsconfig.json",
"start": "webpack serve --config ./webpack/webpack.dev.js",
"build-dev": "yarn type-check && webpack --config ./webpack/webpack.dev.js",
"build-prod": "yarn type-check && webpack --config ./webpack/webpack.prod.js",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"prepare": "husky install",
"lint-staged": "lint-staged",
"postinstall": "patch-package"
},
"dependencies": {
"@stackflow/basic-ui": "0.5.0",
"@stackflow/core": "^0.4.0",
"@stackflow/plugin-history-sync": "^0.6.0",
"@stackflow/plugin-renderer-basic": "^0.5.0",
"@stackflow/react": "0.5.0",
"@use-gesture/react": "^10.2.18",
"axios": "^0.26.0",
"axios-retry": "^3.3.1",
"dayjs": "^1.11.5",
"eslint-plugin-storybook": "^0.6.1",
"jotai": "^1.7.6",
"lottie-web": "^5.9.6",
"patch-package": "^6.4.7",
"postinstall-postinstall": "^2.1.0",
"react": "^18.2.0-next-f7b44539c-20220610",
"react-dom": "^18.2.0-next-f7b44539c-20220610",
"react-hook-form": "^7.33.1",
"react-kakao-maps-sdk": "^1.1.1",
"react-query": "^3.39.1",
"react-router-dom": "^6.2.1",
"styled-components": "^5.3.5",
"styled-reset": "^4.4.1",
"typescript": "^4.5.4"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@storybook/addon-actions": "^6.5.8",
"@storybook/addon-essentials": "^6.5.8",
"@storybook/addon-interactions": "^6.5.8",
"@storybook/addon-links": "^6.5.8",
"@storybook/builder-webpack5": "^6.5.8",
"@storybook/manager-webpack5": "^6.5.8",
"@storybook/react": "^6.5.8",
"@storybook/testing-library": "^0.0.12",
"@svgr/webpack": "5.5",
"@types/node": "^17.0.10",
"@types/react": "^18.0.12",
"@types/react-dom": "^18.0.5",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"babel-loader": "^8.2.5",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"dotenv-webpack": "^7.0.3",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.0",
"kakao.maps.d.ts": "^0.1.32",
"lint-staged": "^13.0.3",
"prettier": "^2.5.1",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.6",
"url-loader": "^4.1.1",
"webpack": "^5.66.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.3",
"webpack-merge": "^5.8.0"
},
"author": "",
"license": "ISC"
}