generated from thomasmendez/react-template-simple-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.65 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
{
"name": "react-template-simple-site",
"version": "1.1.1",
"description": "React Template Simple Site",
"main": "index.js",
"scripts": {
"start": "webpack serve --config webpack.dev.js",
"build": "webpack build --config webpack.prod.js",
"test": "jest --env=jsdom",
"lint": "eslint . --ext .js,.jsx",
"lint:fix": "yarn run lint --fix",
"pretty": "prettier --check **/*.{json,yml,yaml,md}",
"pretty:fix": "prettier --write **/*.{json,yml,yaml,md}",
"prepare": "husky install",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"author": "Thomas Antonio Mendez",
"license": "ISC",
"lint-staged": {
"*.{js,jsx}": [
"eslint --ext .js,.jsx src/ --fix"
],
"*.{json,yml,yaml,md}": [
"prettier --write **/*.{json,yml,yaml,md}"
]
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|pdf|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js"
}
},
"packageManager": "[email protected]",
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@material-ui/icons": "^4.11.2",
"@mui/icons-material": "^5.2.0",
"@mui/material": "^5.1.1",
"@mui/system": "^5.2.5",
"material-ui-popup-state": "^2.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-ga4": "^2.0.0",
"react-router-dom": "^6.0.2"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"@babel/runtime": "^7.20.7",
"@storybook/addon-actions": "^6.4.0",
"@storybook/addon-docs": "^6.4.0",
"@storybook/addon-essentials": "^6.4.0",
"@storybook/addon-links": "^6.4.0",
"@storybook/react": "^6.4.0",
"@testing-library/react": "^12.1.2",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.3",
"babel-preset-es2015": "^6.24.1",
"copy-to-clipboard": "^3.3.1",
"dotenv-webpack": "^7.0.3",
"eslint": "^7.2.0",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-webpack-plugin": "^3.1.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^7.0.4",
"jest": "^27.3.1",
"lint-staged": "^11.2.6",
"prettier": "^2.4.1",
"prop-types": "^15.7.2",
"storybook-color-picker": "^2.1.5",
"typescript": "^4.5.2",
"webpack": "^5.50.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^4.4.0"
}
}