-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.57 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
{
"name": "ctfboard",
"version": "0.0.1",
"private": true,
"scripts": {
"build:css": "tailwindcss -m -i ./styles/tailwind.css -o app/styles/index.css",
"dev:css": "tailwindcss -w -i ./styles/tailwind.css -o app/styles/index.css",
"dev": "remix build && concurrently \"npm run dev:css\" \"npm run dev:node\" \"npm run dev:remix\"",
"dev:node": "cross-env NODE_ENV=development nodemon --require dotenv/config ./server.js --watch ./server.js",
"dev:remix": "remix watch",
"build": "remix build",
"start": "cross-env NODE_ENV=production node ./server.js",
"start:migrate": "prisma migrate deploy && npm run start"
},
"prisma": {
"seed": "node prisma/seed.js"
},
"dependencies": {
"@carrotsearch/foamtree": "^3",
"@headlessui/react": "^1.7.7",
"@heroicons/react": "^2.0.13",
"@mapbox/node-pre-gyp": "^1.0.10",
"@prisma/client": "^4.9.0",
"@remix-run/express": "^1.14.0",
"@remix-run/node": "^1.14.0",
"@remix-run/react": "^1.14.0",
"@remix-run/serve": "^1.14.0",
"bcrypt": "^5.0.1",
"chart.js": "^4.2.1",
"chartjs-adapter-date-fns": "^3.0.0",
"chartjs-adapter-moment": "^1.0.1",
"clsx": "^1.2.1",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
"cyrillic-to-translit-js": "^3.2.1",
"date-fns": "^2.29.3",
"error-stack-parser": "^2.1.4",
"express": "^4.18.2",
"framer-motion": "^8.4.3",
"isbot": "^3.6.5",
"js-yaml": "^4.1.0",
"moment": "^2.29.4",
"moment-timezone": "^0.5.40",
"morgan": "^1.10.0",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^6.0.0",
"react-type-animation": "^2.1.2",
"remix-auth": "^3.4.0",
"remix-auth-form": "^1.3.0",
"zod": "^3.20.2"
},
"devDependencies": {
"@remix-run/dev": "^1.14.0",
"@remix-run/eslint-config": "^1.14.0",
"@shrutibalasa/tailwind-grid-auto-fit": "^1.1.0",
"autoprefixer": "^10.4.13",
"concurrently": "^7.6.0",
"dotenv": "^16.0.3",
"eslint": "^8.31.0",
"nodemon": "^2.0.20",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.21",
"prisma": "^4.9.0",
"rmx-cli": "^0.3.5",
"tailwindcss": "^3.2.4"
},
"engines": {
"node": ">=16",
"npm": ">=8"
},
"eslintIgnore": [
"/node_modules",
"/build",
"/public/build"
]
}