forked from theHandsomestNerd/mixed-feelings-by-t
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
125 lines (125 loc) · 3.8 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "the-handsomestnerd-internal",
"version": "0.8.0",
"license": "GPL-3.0-or-later",
"private": true,
"dependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.18",
"@mui/material": "^5.14.18",
"@mui/styles": "^5.14.18",
"@react-google-maps/api": "^2.19.2",
"@react-pdf/renderer": "^3.1.14",
"react-card-flip": "^1.1.6",
"@storybook/addon-mdx-gfm": "^7.4.6",
"@storybook/react-webpack5": "^7.4.6",
"@tanstack/react-query": "^4.36.1",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"aos": "^2.3.4",
"caniuse-lite": "^1.0.30001414",
"clsx": "^1.2.1",
"firebase": "^9.14.0",
"framer-motion": "^10.16.5",
"ga-gtag": "^1.1.5",
"material-ui-popup-state": "^5.0.9",
"moment": "^2.29.4",
"msw": "^0.47.4",
"postcss": "^8.4.18",
"postcss-loader": "^7.0.1",
"prerender-node": "^3.5.0",
"react": "^18.2.0",
"react-countdown": "^2.3.2",
"react-dom": "^18.2.0",
"react-intersection-observer": "^9.5.3",
"react-meta-tags": "^1.0.1",
"react-moment": "^1.1.1",
"react-parallax": "^3.5.1",
"react-qr-code": "^2.0.8",
"react-router": "^6.4.2",
"react-router-dom": "^6.4.2",
"react-router-hash-link": "^2.4.3",
"react-router-sitemap": "^1.2.0",
"react-scripts": "5.0.1",
"react-scroll-listener": "^0.8.0",
"react-syntax-highlighter": "^15.4.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.1.0",
"typescript": "^5.2.2",
"uuid": "^9.0.0",
"validator": "^13.7.0",
"web-vitals": "^1.0.1"
},
"scripts": {
"start": "NODE_ENV=production react-scripts start",
"start:debug": "yarn build:dev && NODE_ENV=development serve -s build",
"start:dev": "NODE_ENV=development react-scripts start",
"build": "tsc && react-scripts build",
"build:dev": " NODE_ENV=development tsc --build && react-scripts build && cd functions && npm run build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"firebaseDeploy": "firebase deploy --only hosting",
"storybook": "sb dev",
"build-storybook": "sb build"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@sanity/asset-utils": "^1.2.3",
"@sanity/block-content-to-react": "^3.0.0",
"@sanity/client": "^2.8.0",
"@sanity/image-url": "^0.140.22",
"@sanity/types": "^2.34.0",
"@storybook/addon-actions": "^7.4.5",
"@storybook/addon-docs": "^7.4.5",
"@storybook/addon-essentials": "^7.4.5",
"@storybook/addon-links": "^7.4.5",
"@storybook/addon-styling": "^1.3.7",
"@storybook/cli": "^7.4.6",
"@storybook/node-logger": "^7.4.5",
"@storybook/preset-create-react-app": "^7.4.5",
"@storybook/react": "^7.4.5",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.5.1",
"@types/aos": "^3.0.4",
"@types/jest": "^29.5.5",
"@types/react": "^18.0.22",
"@types/react-dom": "^18.0.7",
"@types/react-router": "^5.1.19",
"@types/react-router-dom": "^5.3.3",
"@types/react-syntax-highlighter": "^13.5.0",
"@types/uuid": "^9.0.0",
"@types/validator": "^13.7.7",
"storybook-addon-material-ui": "^0.9.0-alpha.24",
"url-loader": "^4.1.1"
}
}