-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
113 lines (113 loc) · 3.59 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "side-pool-front",
"version": "1.0.0",
"description": "frontend",
"main": "src/index.tsx",
"scripts": {
"start": "export NODE_ENV=develop && webpack serve --config ./webpack/webpack.dev.js",
"build-dev": "export NODE_ENV=develop tsc && webpack --config ./webpack/webpack.dev.js",
"build-prod": "export NODE_ENV=product tsc && webpack --config ./webpack/webpack.prod.js",
"check-types": "tsc",
"test": "jest --watchAll --coverage",
"test:ci": "jest",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"lint": "eslint --fix --ext .js,.jsx,.tx,.tsx src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/side-pool/frontend.git"
},
"author": "seung-00",
"contributors": [
"seung-00",
"dididy"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/side-pool/frontend/issues"
},
"homepage": "https://github.com/side-pool/frontend#readme",
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@babel/runtime": "^7.15.4",
"@babel/runtime-corejs3": "^7.15.4",
"@storybook/addon-actions": "^6.3.8",
"@storybook/addon-essentials": "^6.3.8",
"@storybook/addon-links": "^6.3.8",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/builder-webpack5": "^6.3.8",
"@storybook/manager-webpack5": "^6.3.8",
"@storybook/react": "^6.3.8",
"@svgr/webpack": "^5.5.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.2",
"@types/axios": "^0.14.0",
"@types/jest": "^27.0.2",
"@types/jest-plugin-context": "^2.9.4",
"@types/node": "^16.11.4",
"@types/react": "^17.0.27",
"@types/react-dom": "^17.0.9",
"@types/react-lazyload": "^3.1.1",
"@types/react-redux": "^7.1.19",
"@types/react-router-dom": "^5.3.1",
"@types/redux": "^3.6.0",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"babel-jest": "^27.3.1",
"babel-loader": "^8.2.2",
"classnames": "^2.3.1",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.3.0",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.2.5",
"jest-plugin-context": "^2.9.0",
"jest-svg-transformer": "^1.0.0",
"mini-css-extract-plugin": "^2.4.2",
"postcss": "^8.3.11",
"postcss-loader": "^6.2.0",
"prettier": "^2.4.1",
"qs": "^6.10.1",
"react-masonry-css": "^1.0.16",
"sass": "^1.42.1",
"sass-loader": "^12.1.0",
"style-loader": "^3.3.0",
"ts-jest": "^27.0.7",
"uuid": "^8.3.2",
"webpack": "^5.58.0",
"webpack-cli": "^4.9.0",
"webpack-dev-server": "^4.3.1",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@reduxjs/toolkit": "^1.6.1",
"@toast-ui/react-editor": "^3.1.1",
"axios": "^0.22.0",
"json5-loader": "^4.0.1",
"lottie-web": "^5.8.1",
"normalize.css": "^8.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-lazyload": "^3.2.0",
"react-query": "^3.26.0",
"react-redux": "^7.2.5",
"react-router-dom": "^5.3.0",
"redux": "^4.1.1",
"typescript": "^4.3.5"
}
}