-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.95 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
{
"name": "portfolio",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "webpack --config webpack.prod.ts",
"dev": "webpack serve --config webpack.dev.ts",
"lint": "eslint src/**/*.{ts,tsx,js,jsx}",
"lint:fix": "eslint --fix src/**/*.{ts,tsx,js,jsx}",
"storybook": "start-storybook -s msw -p 6006",
"build-storybook": "build-storybook",
"test": "jest",
"cypress": "cypress open"
},
"author": "",
"license": "ISC",
"dependencies": {
"@loadable/component": "^5.14.1",
"@reduxjs/toolkit": "^1.6.1",
"@toast-ui/editor": "^3.0.2",
"@toast-ui/react-editor": "^3.2.2",
"axios": "^0.21.1",
"classnames": "^2.3.1",
"crypto-js": "^4.1.1",
"http-status": "^1.5.2",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"react-icons": "^4.1.0",
"react-redux": "^7.2.4",
"react-router-dom": "^5.2.0",
"redux": "^4.1.1",
"remove-markdown": "^0.3.0",
"styled-components": "^5.2.1"
},
"devDependencies": {
"@storybook/addon-actions": "^6.3.4",
"@storybook/addon-controls": "^6.3.4",
"@storybook/addon-essentials": "^6.3.4",
"@storybook/addon-knobs": "^6.2.9",
"@storybook/addon-links": "^6.3.4",
"@storybook/react": "^6.3.4",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/react-hooks": "^7.0.1",
"@types/crypto-js": "^4.0.2",
"@types/dotenv-webpack": "^7.0.3",
"@types/loadable__component": "^5.13.1",
"@types/lodash.debounce": "^4.0.6",
"@types/lodash.throttle": "^4.1.6",
"@types/react": "^17.0.1",
"@types/react-dev-utils": "^9.0.4",
"@types/react-dom": "^17.0.1",
"@types/react-helmet": "^6.1.0",
"@types/react-router-dom": "^5.3.3",
"@types/remove-markdown": "^0.3.1",
"@types/styled-components": "^5.1.4",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"copy-webpack-plugin": "^6.3.2",
"css-loader": "^5.2.6",
"cypress": "^10.10.0",
"cypress-file-upload": "^5.0.8",
"dotenv-webpack": "^6.0.0",
"eslint": "^7.29.0",
"favicons": "^6.2.2",
"favicons-webpack-plugin": "^5.0.2",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^7.2.1",
"html-webpack-plugin": "^5.5.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^29.0.0",
"jest-transform-stub": "^2.0.0",
"msw": "^0.35.0",
"msw-storybook-addon": "^1.2.0",
"prettier": "^2.1.2",
"react-dev-utils": "^11.0.0",
"react-is": "^17.0.1",
"react-refresh": "^0.9.0",
"style-loader": "^2.0.0",
"ts-jest": "^28.0.7",
"ts-loader": "^9.2.8",
"ts-node": "^10.7.0",
"typescript": "^4.4.2",
"webpack": "^5.70.0",
"webpack-bundle-analyzer": "^4.1.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
},
"msw": {
"workerDirectory": "msw"
}
}