-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.92 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
{
"name": "langame-website",
"version": "0.9.0",
"private": true,
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@hookform/resolvers": "^2.9.10",
"@mui/icons-material": "^5.10.14",
"@mui/lab": "^5.0.0-alpha.108",
"@mui/material": "^5.10.14",
"@mui/x-data-grid": "^5.17.12",
"@sentry/react": "^7.22.0",
"@sentry/tracing": "^7.22.0",
"@skyra/discord-components-core": "^3.4.1",
"@skyra/discord-components-react": "^3.4.1",
"@stripe/react-stripe-js": "^1.15.0",
"@stripe/stripe-js": "^1.44.1",
"algoliasearch": "^4.14.2",
"classnames": "^2.3.2",
"firebase": "^9.14.0",
"lodash": "^4.17.21",
"notistack": "^2.0.8",
"posthog-js": "^1.37.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-google-button": "^0.7.2",
"react-instantsearch-dom": "^6.38.1",
"react-instantsearch-hooks-web": "^6.38.1",
"react-responsive-carousel": "^3.2.23",
"react-router-dom": "^6.4.3",
"react-scripts": "^5.0.1",
"reactfire": "^4.2.2",
"recharts": "^2.1.16",
"sass": "^1.56.1"
},
"devDependencies": {
"@types/jest": "^29.2.3",
"@types/lodash": "^4.14.189",
"@types/node": "^18.11.9",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"@types/react-instantsearch-dom": "^6.12.3",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"eslint": "^8.27.0",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"typescript": "^4.9.3"
},
"repository": {
"type": "git",
"url": "https://github.com/langa-me/langame-website.git"
},
"scripts": {
"start": "REACT_APP_ENVIRONMENT=emulator react-scripts start",
"start-prod": "REACT_APP_ENVIRONMENT=production react-scripts start",
"start-dev": "REACT_APP_ENVIRONMENT=development react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"deploy-prod": "npm run set-prod && REACT_APP_ENVIRONMENT=production react-scripts build && firebase deploy --only hosting:prod-website",
"deploy-dev": "npm run set-dev && REACT_APP_ENVIRONMENT=development react-scripts build && firebase deploy --only hosting:dev-website",
"deploy-tmp": "npm run set-dev && REACT_APP_ENVIRONMENT=development react-scripts build && firebase hosting:channel:deploy new-awesome-feature --expires 1d",
"set-dev": "firebase use langame-dev",
"set-prod": "firebase use langame-86ac4",
"lint": "eslint . --ext .ts --fix",
"clean": "rm -rf ./build node_modules package-lock.json"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}