-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
134 lines (134 loc) · 5.38 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "@senecacdot/starchart",
"version": "1.0.0",
"sideEffects": false,
"scripts": {
"build": "run-s build:*",
"build:remix": "remix build",
"build:server": "esbuild --platform=node --format=cjs ./server.ts --outdir=build --bundle",
"predev": "npm run build:server",
"dev": "cross-env NODE_ENV=development SECRETS_OVERRIDE=1 run-p dev:remix dev:server:delay",
"dev:build": "npm run build:server -- --watch",
"delay": "node -e \"setTimeout(() => process.exit(0), 3000)\"",
"dev:remix": "remix watch",
"dev:server:delay": "run-s delay dev:server",
"dev:server": "node --inspect --require ./node_modules/dotenv/config ./build/server.js",
"docker": "docker compose up -d",
"lint": "oxlint && eslint",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:seed": "prisma db seed",
"db:reset": "prisma migrate reset",
"db:migration": "cross-env DATABASE_URL='mysql://root:[email protected]:3306/starchart' prisma migrate dev --create-only --skip-seed",
"db:format": "prisma format",
"db:studio": "prisma studio",
"db:studio:test": "cross-env DATABASE_URL='mysql://root:[email protected]:3306/starchart_test' prisma studio",
"setup": "run-s db:generate db:push db:seed",
"setup:test": "cross-env DATABASE_URL='mysql://root:[email protected]:3306/starchart_test' run-s db:generate db:push",
"start": "cross-env NODE_ENV=production node ./build/server.js",
"start:e2e": "cross-env NODE_ENV=test node --require dotenv/config ./build/server.js",
"test": "cross-env SECRETS_OVERRIDE=1 DATABASE_URL='mysql://root:[email protected]:3306/starchart_test' NODE_OPTIONS=--require=dotenv/config vitest",
"test:coverage": "cross-env SECRETS_OVERRIDE=1 DATABASE_URL='mysql://root:[email protected]:3306/starchart_test' NODE_OPTIONS=--require=dotenv/config vitest run --coverage",
"e2e": "cross-env NODE_ENV=test PORT=8080 DATABASE_URL='mysql://root:[email protected]:3306/starchart_test' start-server-and-test dev http://localhost:8080 \"playwright test --ui\"",
"test:e2e:dev": "cross-env PORT=8080 DATABASE_URL='mysql://root:[email protected]:3306/starchart_test' start-server-and-test dev http://localhost:8080 \"playwright test\"",
"pretest:e2e:run": "cross-env NODE_ENV=test SECRETS_OVERRIDE=1 run-s build",
"test:e2e:run": "cross-env NODE_ENV=test SECRETS_OVERRIDE=1 PORT=8080 DATABASE_URL='mysql://root:[email protected]:3306/starchart_test' start-server-and-test start:e2e http://localhost:8080 \"playwright test\"",
"typecheck": "tsc",
"validate": "run-p \"test -- --run\" lint typecheck test:e2e:run",
"prepare": "husky"
},
"dependencies": {
"@authenio/samlify-node-xmllint": "^2.0.0",
"@aws-sdk/client-route-53": "^3.750.0",
"@chakra-ui/icons": "^2.2.4",
"@chakra-ui/react": "^2.7.1",
"@emotion/react": "^11.14.0",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.14.0",
"@prisma/client": "^6.4.0",
"@remix-run/express": "2.15.3",
"@remix-run/node": "2.15.3",
"@remix-run/react": "2.15.3",
"@remix-run/server-runtime": "2.15.3",
"acme-client": "^5.4.0",
"bad-words": "^3.0.4",
"bullmq": "^5.41.3",
"compression": "^1.8.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dayjs": "^1.11.13",
"docker-secret": "^2.0.6",
"express": "^4.21.2",
"framer-motion": "^12.4.5",
"helmet": "^8.0.0",
"http-graceful-shutdown": "^3.1.14",
"ioredis": "^5.5.0",
"isbot": "^5.1.23",
"nodemailer": "^6.10.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.5.0",
"react-use": "^17.6.0",
"remix-typedjson": "^0.4.1",
"samlify": "^2.8.10",
"validator": "^13.12.0",
"winston": "^3.17.0",
"zod": "^3.24.2",
"zodix": "^0.4.4"
},
"devDependencies": {
"@eslint/compat": "^1.2.7",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.20.0",
"@playwright/test": "^1.50.1",
"@remix-run/dev": "2.15.3",
"@types/bad-words": "^3.0.3",
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^18.16.16",
"@types/nodemailer": "^6.4.17",
"@types/react": "^18.2.8",
"@types/react-dom": "^18.2.4",
"@types/validator": "^13.12.2",
"@typescript-eslint/eslint-plugin": "^8.24.1",
"@typescript-eslint/parser": "^8.26.0",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-istanbul": "^0.34.6",
"dotenv": "^16.4.7",
"esbuild": "^0.25.0",
"eslint": "^9.20.1",
"eslint-import-resolver-typescript": "^3.8.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-oxlint": "^0.15.13",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"globals": "^15.15.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"npm-run-all": "^4.1.5",
"oxlint": "^0.15.11",
"prettier": "3.5.1",
"prisma": "^6.4.0",
"start-server-and-test": "^2.0.10",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.7.3",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^0.34.6"
},
"engines": {
"node": ">=20"
},
"prisma": {
"seed": "ts-node --require tsconfig-paths/register prisma/seed.ts"
},
"lint-staged": {
"*.{md,json,html,css,js,yaml,yml,ts,tsx}": [
"prettier --write",
"oxlint",
"eslint"
]
}
}