-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 5.04 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 5.04 KB
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
{
"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",
"dev": "cross-env SECRETS_OVERRIDE=1 remix dev -c \"tsx --inspect ./server.ts\"",
"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:root_password@127.0.0.1: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:root_password@127.0.0.1:3306/starchart_test' prisma studio",
"setup": "run-s db:generate db:push db:seed",
"setup:test": "cross-env DATABASE_URL='mysql://root:root_password@127.0.0.1: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 LOG_LEVEL=info SECRETS_OVERRIDE=1 DATABASE_URL='mysql://root:root_password@127.0.0.1:3306/starchart_test' NODE_OPTIONS=--require=dotenv/config vitest",
"test:coverage": "cross-env SECRETS_OVERRIDE=1 DATABASE_URL='mysql://root:root_password@127.0.0.1:3306/starchart_test' NODE_OPTIONS=--require=dotenv/config vitest run --coverage",
"e2e": "cross-env NODE_ENV=test PORT=8080 DATABASE_URL='mysql://root:root_password@127.0.0.1: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:root_password@127.0.0.1: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:root_password@127.0.0.1:3306/starchart_test' start-server-and-test start:e2e http://localhost:8080 \"playwright test\"",
"typecheck": "tsc --noEmit",
"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.940.0",
"@chakra-ui/icons": "^2.2.6",
"@chakra-ui/react": "^2.10.9",
"@emotion/react": "^11.14.0",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.14.1",
"@prisma/adapter-mariadb": "^7.0.1",
"@prisma/client": "^7.0.1",
"@remix-run/express": "2.16.4",
"@remix-run/node": "2.16.4",
"@remix-run/react": "2.16.4",
"@remix-run/server-runtime": "2.16.4",
"acme-client": "^5.4.0",
"bad-words": "^3.0.4",
"bullmq": "^5.65.0",
"compression": "^1.8.1",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dayjs": "^1.11.19",
"docker-secret": "^2.0.6",
"dotenv": "^16.6.1",
"express": "^4.21.2",
"framer-motion": "^12.23.24",
"helmet": "^8.1.0",
"http-graceful-shutdown": "^3.1.14",
"ioredis": "^5.8.2",
"isbot": "^5.1.32",
"mariadb": "^3.4.5",
"nodemailer": "^7.0.11",
"prisma": "^7.0.1",
"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.10.1",
"validator": "^13.15.23",
"winston": "^3.18.3",
"zod": "^3.25.76",
"zodix": "^0.4.4"
},
"devDependencies": {
"@eslint/compat": "^1.4.1",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.39.1",
"@playwright/test": "^1.57.0",
"@remix-run/dev": "2.16.4",
"@types/bad-words": "^3.0.3",
"@types/compression": "^1.8.1",
"@types/cors": "^2.8.19",
"@types/express": "^4.17.25",
"@types/node": "^22.19.1",
"@types/nodemailer": "^6.4.21",
"@types/react": "^18.3.27",
"@types/react-dom": "^18.3.7",
"@types/validator": "^13.15.10",
"@typescript-eslint/eslint-plugin": "^8.48.0",
"@typescript-eslint/parser": "^8.48.0",
"@vitejs/plugin-react": "^4.7.0",
"@vitest/coverage-istanbul": "^0.34.6",
"esbuild": "^0.27.0",
"eslint": "^9.39.1",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-oxlint": "^1.30.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.5.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"npm-run-all": "^4.1.5",
"oxlint": "^1.30.0",
"prettier": "3.5.3",
"start-server-and-test": "^2.1.3",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^0.34.6"
},
"engines": {
"node": ">=20"
},
"lint-staged": {
"*.{md,json,html,css,js,yaml,yml,ts,tsx}": [
"prettier --write",
"oxlint",
"eslint"
]
}
}