-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.78 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": "monstersandmyriads",
"version": "0.1.0",
"private": true,
"dependencies": {
"@dicebear/collection": "^5.0.2",
"@dicebear/core": "^5.0.2",
"@fortawesome/fontawesome-svg-core": "^6.2.1",
"@fortawesome/free-solid-svg-icons": "^6.2.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@loadable/component": "^5.15.3",
"@mailchimp/mailchimp_marketing": "^3.0.80",
"@resvg/resvg-js": "^2.0.0",
"@sendgrid/client": "^8.1.3",
"@tanstack/react-query": "^5.49.2",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.8.3",
"dotenv": "^16.0.3",
"firebase": "^9.7.0",
"firebase-functions": "^4.2.0",
"firebaseui": "^6.0.2",
"history": "^5.2.0",
"moment": "^2.29.1",
"path": "^0.12.7",
"postcss-cli": "^9.1.0",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-firebase-hooks": "^5.1.1",
"react-responsive": "^10.0.0",
"react-router-dom": "^6.24.0",
"react-scripts": "^5.0.1",
"sharp": "^0.30.4",
"tailwind": "^4.0.0",
"uuid": "^8.3.2",
"web-vitals": "^1.1.2"
},
"scripts": {
"build:tailwind": "npx tailwindcss-cli@latest build -i src/styling/index.css -o src/styling/tailwind.output.css",
"watch:tailwind": "chokidar src/**/*.css --ignore src/styling/tailwind.output.css -c \"npm run build:tailwind\"",
"start": "npm-run-all build --parallel watch:tailwind start:react",
"start:react": "react-scripts start",
"prebuild": "npm run build:tailwind && npm run build:indexPages",
"build:indexPages": "cd src/scripts && python indexPages.py",
"build": "cd src/scripts && python ./rssManager.py && cd ../.. && react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"stop": "npx kill-port 9099 8080 9000 5000 9199",
"notify": "cd src/scripts && python notifyEmailSubscribers.py",
"emulators:start": "firebase emulators:start --import ./firestore_export",
"emulators:stop": "npx kill-port 4000 8080 8085 9000"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@tanstack/eslint-plugin-query": "^5.49.1",
"autoprefixer": "^10.4.2",
"chokidar-cli": "^2.1.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.6",
"postcss-import": "^15.1.0",
"react-error-overlay": "^6.0.9",
"react-share": "^4.4.0",
"tailwindcss": "^3.0.21",
"webpack-cli": "^4.9.2",
"@babel/plugin-proposal-private-property-in-object": "^7.21.0"
}
}