This repository has been archived by the owner on May 5, 2023. It is now read-only.
forked from dantrain/dans-todos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.97 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
{
"name": "dans-todos",
"version": "2.0.0",
"author": "Dan Train",
"license": "UNLICENSED",
"private": true,
"type": "module",
"scripts": {
"dev": "yarn run zx scripts/dev.mjs",
"start": "NODE_ENV=production node dist/server/index.js",
"start:prod": "yarn run zx scripts/local-prod.mjs",
"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 -r dotenv/config --esm --delay 500ms --ignore client/ --ignore __generated__/ src/index.ts",
"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",
"generate:prisma": "prisma generate",
"generate:nexus": "ts-node --esm --transpile-only ./src/server/schema.ts",
"generate:relay": "relay-compiler",
"generate": "yarn run generate:prisma && yarn run generate:nexus && yarn run generate:relay",
"preview": "vite preview",
"lint": "eslint --ext .js,.ts,.tsx src",
"type-check": "tsc --noEmit",
"prettify": "prettier --write 'src/**/*.{js,jsx,ts,tsx,css,md,json}'",
"clean": "rimraf dist src/**/__generated__/*",
"report": "source-map-explorer dist/client/assets/*.js --no-border-checks",
"postinstall": "yarn run generate:prisma"
},
"dependencies": {
"@emotion/react": "^11.10.4",
"@emotion/server": "^11.10.0",
"@emotion/styled": "^11.10.4",
"@graphql-authz/core": "^1.3.0",
"@graphql-authz/envelop-plugin": "^1.0.4",
"@graphql-yoga/node": "^2.13.13",
"@mui/icons-material": "^5.10.6",
"@mui/material": "^5.10.7",
"@paljs/plugins": "^5.2.0",
"@prisma/client": "^2.30.3",
"ag-grid-community": "^29.0.0",
"ag-grid-react": "^29.0.0",
"downshift": "^7.2.0",
"express": "^4.18.1",
"express-async-errors": "^3.1.1",
"express-session": "^1.17.3",
"graphql": "^16.6.0",
"graphql-relay": "^0.10.0",
"helmet": "^6.0.0",
"immer": "^9.0.18",
"lodash-es": "^4.17.21",
"material-ui-popup-state": "^4.1.0",
"nexus": "^1.3.0",
"nexus-plugin-prisma": "^0.35.0",
"notistack": "^2.0.5",
"pubsub-js": "^1.9.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^3.1.4",
"react-relay": "^14.1.0",
"react-router-dom": "^6.4.1",
"react-transition-group": "^4.4.5",
"react-use": "^17.4.0",
"relay-runtime": "^14.1.0",
"serialize-javascript": "^6.0.0",
"winston": "^3.8.2"
},
"devDependencies": {
"@mermaid-js/mermaid-cli": "^9.3.0",
"@playwright/test": "^1.26.1",
"@types/express": "^4.17.14",
"@types/express-session": "^1.17.5",
"@types/lodash-es": "^4.17.6",
"@types/node": "^18.7.23",
"@types/pubsub-js": "^1.8.3",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@types/react-relay": "^14.1.2",
"@types/relay-runtime": "^14.1.3",
"@types/serialize-javascript": "^5.0.2",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"@vitejs/plugin-react": "^2.1.0",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-relay": "^14.1.0",
"dotenv": "^16.0.3",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"prisma": "^2.21.2",
"prisma-erd-generator": "^1.2.5",
"relay-compiler": "^14.1.0",
"relay-compiler-language-typescript": "^15.0.1",
"rimraf": "^3.0.2",
"source-map-explorer": "^2.5.3",
"tailwindcss": "^3.1.8",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.0",
"twin.macro": "^2.8.2",
"typescript": "^4.8.4",
"vite": "^3.1.4",
"vite-plugin-pwa": "^0.13.1",
"wait-on": "^6.0.1",
"zx": "^7.0.8"
}
}