-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 3.21 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": "react-ts-boilerplate",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"ui:update": "npm install @cos-ui/primitives@latest @cos-ui/react@latest",
"start:dev": "cross-env NODE_ENV=development webpack serve --config webpack/webpack.dev.js --progress",
"build:dev": "cross-env NODE_ENV=development webpack --config webpack/webpack.dev.js",
"build:prod": "cross-env NODE_ENV=production webpack --config webpack/webpack.prod.js",
"test:watch": "jest --watchAll",
"test:cov": "jest --coverage",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@cos-ui/primitives": "^0.2.5",
"@cos-ui/react": "^0.2.5",
"@tanstack/react-query": "^4.2.1",
"axios": "^0.27.2",
"firebase": "^9.10.0",
"jest": "^28.1.3",
"quill-image-resize-module-react": "^3.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-quill": "^2.0.0",
"react-router-dom": "^6.3.0",
"recoil": "^0.7.5",
"styled-components": "^5.3.5",
"styled-reset": "^4.4.2"
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/plugin-transform-runtime": "^7.18.6",
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"@babel/preset-typescript": "^7.17.12",
"@babel/runtime-corejs3": "^7.18.9",
"@storybook/addon-actions": "^6.5.10",
"@storybook/addon-essentials": "^6.5.10",
"@storybook/addon-interactions": "^6.5.10",
"@storybook/addon-links": "^6.5.10",
"@storybook/builder-webpack4": "^6.5.10",
"@storybook/builder-webpack5": "^6.5.10",
"@storybook/manager-webpack4": "^6.5.10",
"@storybook/manager-webpack5": "^6.5.10",
"@storybook/react": "^6.5.10",
"@storybook/testing-library": "^0.0.13",
"@svgr/webpack": "^6.5.0",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.3.0",
"@types/jest": "^28.1.6",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.4",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"babel-loader": "^8.2.5",
"babel-plugin-styled-components": "^2.0.7",
"chromatic": "^6.10.2",
"cross-env": "^7.0.3",
"dotenv": "^16.0.1",
"eslint": "^8.20.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.4",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.0",
"interpolate-html-plugin": "^4.0.0",
"jest-environment-jsdom": "^28.1.3",
"lint-staged": "^13.0.4",
"msw": "^0.47.4",
"msw-storybook-addon": "^1.6.3",
"string-replace-loader": "^3.1.0",
"typescript": "^4.6.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.2",
"webpack-merge": "^5.8.0"
},
"msw": {
"workerDirectory": "public"
}
}