forked from beach-volley/beach-volley-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 3.11 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
{
"name": "beach-volley-app",
"version": "1.0.0",
"private": true,
"dependencies": {
"@apollo/client": "^3.3.9",
"@date-io/date-fns": "^1.3.13",
"@graphile-contrib/pg-simplify-inflector": "^6.1.0",
"@material-ui/core": "^4.11.3",
"@material-ui/lab": "^4.0.0-alpha.57",
"@material-ui/pickers": "^3.2.10",
"cors": "^2.8.5",
"date-fns": "^2.17.0",
"env-cmd": "^10.1.0",
"express": "^4.17.1",
"firebase": "^7.23.0",
"firebase-admin": "^9.5.0",
"firebaseui": "^4.7.3",
"formik": "^2.2.6",
"formik-material-ui": "^3.0.1",
"formik-material-ui-lab": "0.0.8",
"formik-material-ui-pickers": "0.0.12",
"graphile-migrate": "^1.0.2",
"graphile-worker": "~0.9.0",
"graphql": "^15.5.0",
"material-ui-formik-components": "^0.7.3",
"moment": "^2.29.1",
"notistack": "^1.0.5",
"postgraphile": "^4.10.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-firebaseui": "^4.1.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.1",
"react-uuid": "^1.0.2",
"styled-components": "^5.2.1",
"use-share": "^1.0.0",
"uuid4": "^2.0.2",
"web-vitals": "^0.2.4",
"yup": "^0.32.8"
},
"scripts": {
"start": "env-cmd react-scripts start",
"start:staging": "env-cmd -f .env.staging react-scripts start",
"build": "react-scripts build",
"build:staging": "env-cmd -f .env.staging react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"server": "node server/index.js",
"migrations": "env-cmd graphile-migrate",
"postinstall": "husky install",
"prettier": "prettier --write \"(src|server|tasks)/**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"generate:schema:graphql": "postgraphile --no-server --dynamic-json --no-setof-functions-contain-nulls --no-ignore-rbac --no-ignore-indexes --append-plugins @graphile-contrib/pg-simplify-inflector --export-schema-graphql data/schema.graphql --legacy-relations omit --connection \"postgres://beachvolley_graphile:dev_password@localhost:5432/beachvolley\" --default-role beachvolley_graphile_anonymous --schema beachvolley_public",
"generate:schema:sql": "pg_dump --no-sync --schema-only --no-owner --exclude-schema=graphile_migrate --exclude-schema=graphile_worker --exclude-schema=postgraphile_watch --file=./data/schema.sql \"postgres://beachvolley_db_owner:dev_password@localhost:5432/beachvolley\"",
"generate:schema": "npm run generate:schema:sql && npm run generate:schema:graphql",
"worker": "env-cmd graphile-worker"
},
"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": {
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^12.7.1",
"husky": "^5.0.9",
"pg": "^8.5.1",
"prettier": "^2.2.1"
},
"engines": {
"node": "^14.0.0"
}
}