-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
132 lines (132 loc) · 3.77 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
126
127
128
129
130
131
132
{
"name": "blog",
"version": "1.0.0",
"private": true,
"type": "module",
"engines": {
"node": "20.x"
},
"dependencies": {
"@sentry/react": "^6.19.7",
"@sentry/tracing": "^6.13.3",
"@use-effect/did-update": "^0.0.3",
"@welldone-software/why-did-you-render": "^7.0.1",
"aos": "^2.3.4",
"axios": "^0.21.4",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"bootstrap": "^5.1.0",
"cloudinary": "^1.26.3",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dompurify": "^2.3.1",
"dotenv": "^8.2.0",
"env-cmd": "^10.1.0",
"express": "^4.17.1",
"express-fileupload": "^1.2.1",
"express-rate-limit": "^6.7.0",
"framer-motion": "^4.1.17",
"imagemin": "^8.0.1",
"imagemin-jpegtran": "^7.0.0",
"imagemin-pngquant": "^9.0.2",
"imagemin-webp": "^6.0.0",
"jsdom": "^16.7.0",
"jsonwebtoken": "^8.5.1",
"markdown": "^0.5.0",
"marked": "^3.0.0",
"moment": "^2.29.1",
"moment-timezone": "^0.5.33",
"mongoose": "^5.13.7",
"morgan": "^1.10.0",
"node-cache": "^5.1.2",
"openai": "^3.2.1",
"react": "^17.0.2",
"react-bootstrap": "^1.6.1",
"react-cookie": "^4.0.1",
"react-dom": "^17.0.2",
"react-icons": "^4.2.0",
"react-intersection-observer": "^9.8.1",
"react-loading-skeleton": "^3.2.0",
"react-markdown": "^7.0.0",
"react-masonry-css": "^1.0.16",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"react-spring": "^8.0.27",
"react-sticky-state": "^2.1.9",
"react-twitter-widgets": "^1.11.0",
"serve-favicon": "^2.5.0",
"slug": "^5.1.0",
"slugify": "^1.6.0",
"source-map-explorer": "^2.5.2",
"styled-components": "^5.3.0",
"use-carousel-hook": "^0.2.1",
"use-dencrypt-effect": "^1.0.1",
"uuid": "^8.3.2",
"web-vitals": "^1.1.2",
"winston": "^3.3.3"
},
"scripts": {
"start": "react-scripts --openssl-legacy-provider start",
"start:dev": "env-cmd -e development react-scripts start",
"start:qa": "env-cmd -e testing react-scripts start",
"start:stag": "env-cmd -e staging react-scripts start",
"start:prod": "env-cmd -e production react-scripts start",
"build:dev": "env-cmd -e dev react-scripts build",
"build:qa": "env-cmd -e staging react-scripts build",
"build:prod": "env-cmd -e production react-scripts build",
"build": "react-scripts --openssl-legacy-provider build",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"test": "jest",
"test:jest": "jest",
"eject": "react-scripts eject",
"analyze": "source-map-explorer 'build/static/js/*.js'",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public"
},
"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"
]
},
"proxy": "http://localhost:3001",
"devDependencies": {
"@shelf/jest-mongodb": "^2.0.3",
"@storybook/addon-actions": "^6.3.10",
"@storybook/addon-essentials": "^6.3.10",
"@storybook/addon-links": "^6.3.10",
"@storybook/node-logger": "^6.3.10",
"@storybook/preset-create-react-app": "^3.2.0",
"@storybook/react": "^6.3.10",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/user-event": "^14.4.3",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-react": "^7.33.1",
"jest": "^26.6.0",
"supertest": "^6.3.3"
}
}