forked from ShaneFindley/react-base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 3.11 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": "react-app-wo-cra",
"version": "1.0.1",
"description": "A simple react application without create react app",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server .",
"start-w-mocks": "npx msw init ./static --save && webpack-dev-server .",
"build": "webpack .",
"test": "jest",
"lint": "eslint --ext js,ts,tsx,snap src",
"lint-css": "stylelint --fix \"src/**/*.{js,ts,tsx,css}\" \"!src/**/__tests__/**\"",
"storybook": "npx msw init ./static --save && storybook dev -p 6006",
"build-storybook": "storybook build"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.18.9",
"@babel/core": "^7.18.9",
"@babel/plugin-transform-runtime": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@babel/runtime": "^7.18.9",
"@storybook/addon-essentials": "^7.4.6",
"@storybook/addon-interactions": "^7.4.6",
"@storybook/addon-links": "^7.4.6",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/blocks": "^7.4.6",
"@storybook/react": "^7.4.6",
"@storybook/react-webpack5": "^7.4.6",
"@storybook/testing-library": "^0.2.2",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.4.1",
"@types/jest": "^28.1.6",
"@types/prismjs": "^1.26.0",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"babel-jest": "^28.1.3",
"babel-loader": "^8.2.5",
"css-loader": "^6.7.1",
"eslint": "^8.35.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-storybook": "^0.6.15",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"jest-resolve": "^28.1.3",
"jest-watch-typeahead": "^2.0.0",
"msw": "^1.3.2",
"prettier": "^2.8.4",
"raw-loader": "^4.0.2",
"storybook": "^7.4.6",
"style-loader": "^3.3.1",
"stylelint": "^15.2.0",
"stylelint-config-standard": "^30.0.1",
"ts-jest": "^28.0.7",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3"
},
"dependencies": {
"@ckeditor/ckeditor5-build-classic": "^35.0.1",
"@ckeditor/ckeditor5-code-block": "^35.0.1",
"@ckeditor/ckeditor5-dev-utils": "^30.4.0",
"@ckeditor/ckeditor5-react": "^5.0.2",
"@ckeditor/ckeditor5-theme-lark": "^35.0.1",
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@mui/icons-material": "^5.8.4",
"@mui/material": "^5.9.3",
"axios": "^0.27.2",
"axios-hooks": "^3.1.4",
"crypto": "^1.0.1",
"date-fns": "^2.29.1",
"formik": "^2.2.9",
"history": "^5.3.0",
"prismjs": "^1.28.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.3.0",
"yup": "^0.32.11"
},
"msw": {
"workerDirectory": "static"
}
}