-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
117 lines (117 loc) · 4.44 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
{
"name": "dans-todos",
"version": "2.0.0",
"author": "Dan Train",
"license": "UNLICENSED",
"private": true,
"type": "module",
"prisma": {
"seed": "ts-node --esm prisma/seed.ts"
},
"scripts": {
"build": "yarn run generate && tsc && vite build --outDir dist/client --manifest && vite build --outDir dist/server --ssr src/index.ts --target node16 && sed -i'.bak' -e 's/e.registerRoute(new e.NavigationRoute(e.createHandlerBoundToURL(\"index.html\"))),//' dist/client/sw.js",
"clean": "rimraf dist src/**/__generated__/*",
"dev": "yarn envful check && yarn run zx scripts/dev.mjs",
"generate:prisma": "prisma generate",
"generate:relay": "relay-compiler",
"generate": "yarn run generate:prisma && yarn run generate:relay",
"lint": "eslint --ext .js,.ts,.tsx src",
"migrate:prod": "yarn run zx scripts/migrate-prod.mjs",
"postinstall": "yarn run generate:prisma",
"prettify": "prettier --write 'src/**/*.{js,jsx,ts,tsx,css,md,json}'",
"preview": "vite preview",
"pwa-assets": "pwa-asset-generator logo.svg public/ -b \"#1975d1\" -t png",
"report": "source-map-explorer dist/client/assets/*.js --no-border-checks",
"start:db": "docker run --name vite-db --rm --env POSTGRES_PASSWORD=d1rONeFo0KL8ZwC8 -p 5432:5432 postgres:14",
"start:dev-server": "NODE_NO_WARNINGS=1 nodemon --esm --delay 500ms --ignore client/ --ignore storageState.json src/index.ts",
"start:prod": "yarn run zx scripts/local-prod.mjs",
"start:redis": "docker run --name vite-redis --rm -v redis.conf:/usr/local/etc/redis/redis.conf -p 6379:6379 redis:7 redis-server /usr/local/etc/redis/redis.conf",
"start": "NODE_ENV=production node dist/server/index.js",
"test": "yarn playwright test --project='chromium'",
"test:ui": "yarn playwright test --ui",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@emotion/react": "^11.11.0",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@graphql-authz/core": "^1.3.0",
"@graphql-authz/envelop-plugin": "^1.0.4",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.13.0",
"@pothos/core": "^3.30.0",
"@pothos/plugin-authz": "^3.5.8",
"@pothos/plugin-prisma": "3.51.1",
"@pothos/plugin-prisma-utils": "^0.8.1",
"@pothos/plugin-relay": "^3.43.0",
"@prisma/client": "4.14.0",
"compression": "^1.7.4",
"connect-redis": "^7.1.0",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"express-session": "^1.17.3",
"google-auth-library": "^9.0.0",
"graphql": "^16.6.0",
"graphql-yoga": "^3.9.1",
"helmet": "^7.0.0",
"lodash-es": "^4.17.21",
"material-ui-popup-state": "^5.0.8",
"notistack": "^3.0.1",
"pubsub-js": "^1.9.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.4",
"react-relay": "^15.0.0",
"react-router-dom": "^6.11.1",
"react-transition-group": "^4.4.5",
"react-use": "^17.4.0",
"redis": "^4.6.6",
"relay-runtime": "^15.0.0",
"serialize-javascript": "^6.0.1",
"winston": "^3.8.2"
},
"devDependencies": {
"@playwright/test": "^1.33.0",
"@types/compression": "^1.7.2",
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.7",
"@types/google-one-tap": "^1.2.2",
"@types/lodash-es": "^4.17.7",
"@types/node": "^20.1.5",
"@types/pubsub-js": "^1.8.3",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"@types/react-relay": "^14.1.3",
"@types/relay-runtime": "^14.1.3",
"@types/serialize-javascript": "^5.0.2",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"@vitejs/plugin-react": "^4.0.0",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-relay": "^15.0.0",
"better-opn": "^3.0.2",
"dotenv": "^16.0.3",
"envful": "^1.0.7",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"prisma": "^4.14.0",
"pwa-asset-generator": "^6.3.0",
"relay-compiler": "^15.0.0",
"relay-compiler-language-typescript": "^15.0.1",
"rimraf": "^5.0.0",
"source-map-explorer": "^2.5.3",
"tailwindcss": "^3.3.2",
"ts-node": "^10.9.1",
"twin.macro": "^3.3.1",
"typescript": "^5.0.4",
"vite": "^4.3.6",
"vite-plugin-pwa": "^0.14.7",
"wait-on": "^7.0.1",
"zx": "^7.2.2"
}
}