-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.89 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
{
"name": "habit-breaker",
"quokka": {
"babel": true
},
"version": "0.1.0",
"private": false,
"homepage": ".",
"main": "dist/js/index.js",
"module": "dist/esm/index.js",
"types": "dist/js/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/Sensiblemnd/ReactWebsite.git"
},
"scripts": {
"build-storybook": "build-storybook -s public",
"build:types": "tsc -p tsconfig.gen-dts.json",
"build": "react-scripts build",
"clean": "rimraf dist",
"develop": "yarn build:types && yarn build:babel:esm --skip-initial-build --watch --verbose",
"eject": "react-scripts eject",
"start": "react-scripts start",
"sb": "start-storybook -p 6006 -s public",
"test:debug": "react-scripts --inspect-brk test --runInBand --no-cache",
"test": "react-scripts test",
"cy": "cross-env CYPRESS_REMOTE_DEBUGGING_PORT=9222 node_modules/.bin/cypress open"
},
"dependencies": {
"@emotion/core": "^11.0.0",
"@emotion/react": "^11.7.0",
"@emotion/styled": "^11.6.0",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@mui/material": "^5.2.1",
"framer-motion": "^6.2.4",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hook-form": "^7.24.0",
"react-query": "^3.34.12",
"react-redux": "^7.2.6",
"react-router-dom": "^6.2.1",
"react-scripts": "^5.0.0",
"react-use": "^17.3.2",
"redux-thunk": "^2.3.0",
"sass": "^1.45.0",
"stylelint-config-sass-guidelines": "^9.0.1"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not IE 11",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/cli": "^7.17.3",
"@babel/core": "^7.17.5",
"@babel/plugin-proposal-export-default-from": "^7.16.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-typescript": "^7.16.8",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.1.9",
"@types/enzyme": "^3.10.9",
"@types/jest": "^27.0.3",
"@types/node": "^17.0.16",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"@types/react-router": "^5.1.17",
"@types/react-router-dom": "^5.3.2",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.2",
"add": "^2.0.6",
"autoprefixer": "^10.2.3",
"babel-loader": "^8.1.0",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"babel-plugin-typescript-to-proptypes": "^2.0.0",
"concurrently": "^6.2.1",
"cross-env": "^7.0.3",
"cypress": "^9.1.1",
"enzyme": "^3.11.0",
"postcss-cli": "^9.1.0",
"postcss-normalize": "^10.0.1",
"react-is": "^17.0.2",
"typescript": "^4.5.5",
"yarn": "^1.22.17"
}
}