-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
121 lines (121 loc) · 5.09 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
{
"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": "eslint \"**/*.{js,ts,jsx,tsx}\" --cache --cache-location ./node_modules/.cache/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 install"
},
"dependencies": {
"@authenio/samlify-node-xmllint": "^2.0.0",
"@aws-sdk/client-route-53": "^3.360.0",
"@chakra-ui/icons": "^2.0.19",
"@chakra-ui/react": "^2.7.1",
"@emotion/react": "^11.11.0",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@prisma/client": "^4.15.0",
"@remix-run/express": "^1.16.1",
"@remix-run/node": "^1.16.1",
"@remix-run/react": "^1.16.1",
"@remix-run/server-runtime": "^1.16.1",
"acme-client": "^5.0.0",
"bad-words": "^3.0.4",
"bullmq": "^3.15.8",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dayjs": "^1.11.8",
"docker-secret": "^2.0.6",
"express": "^4.18.2",
"framer-motion": "^10.12.16",
"helmet": "^7.0.0",
"http-graceful-shutdown": "^3.1.13",
"ioredis": "^5.3.2",
"isbot": "^3.6.10",
"nodemailer": "^6.9.3",
"prisma": "^4.16.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.10.1",
"react-use": "^17.4.0",
"remix-typedjson": "^0.1.7",
"samlify": "^2.8.10",
"validator": "^13.9.0",
"winston": "^3.9.0",
"zod": "^3.21.4",
"zodix": "^0.4.1"
},
"devDependencies": {
"@playwright/test": "^1.35.0",
"@remix-run/dev": "^1.16.1",
"@remix-run/eslint-config": "^1.16.1",
"@types/bad-words": "^3.0.1",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.13",
"@types/eslint": "^8.40.0",
"@types/express": "^4.17.17",
"@types/node": "^18.16.16",
"@types/nodemailer": "^6.4.8",
"@types/react": "^18.2.8",
"@types/react-dom": "^18.2.4",
"@types/validator": "^13.7.17",
"@vitejs/plugin-react": "^4.0.0",
"@vitest/coverage-istanbul": "^0.32.2",
"dotenv": "^16.3.1",
"esbuild": "^0.18.2",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-playwright": "^0.12.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"npm-run-all": "^4.1.5",
"prettier": "2.8.8",
"start-server-and-test": "^2.0.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.3",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.32.0"
},
"engines": {
"node": ">=16"
},
"prisma": {
"seed": "ts-node --require tsconfig-paths/register prisma/seed.ts"
},
"lint-staged": {
"*.{md,json,html,css,js,yaml,yml,ts,tsx}": "prettier --write"
}
}