-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.78 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
{
"name": "senar.ai",
"private": true,
"sideEffects": false,
"prisma": {
"seed": "node --require esbuild-register prisma/seed.ts"
},
"scripts": {
"generate:css": "npx tailwindcss -o ./app/tailwind.css",
"build": "run-s build:*",
"build:fetch": "npm run fetch",
"build:css": "npm run generate:css -- --minify",
"build:remix": "remix build",
"deploy": "deployctl deploy --prod --include=build,public --project=senarai ./build/index.js",
"dev": "remix build && run-p dev:*",
"dev:css": "npm run generate:css -- --watch",
"dev:deno": "cross-env NODE_ENV=development deno run --unstable --watch --allow-net --allow-read --allow-env ./build/index.js",
"dev:remix": "remix watch",
"fetch": "node --require esbuild-register app/scripts/fetch-db.ts",
"format": "pkode format",
"lint": "pkode lint",
"lint:deno": "deno lint server.ts",
"test": "pkode test",
"test:update": "pkode test --updateSnapshot",
"start": "cross-env NODE_ENV=production deno run --unstable --allow-net --allow-read --allow-env ./build/index.js"
},
"dependencies": {
"@headlessui/react": "1.6.4",
"@prisma/client": "4.3.1",
"@remix-run/deno": "^1.5.1",
"@remix-run/react": "^1.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@remix-run/dev": "^1.5.1",
"@types/react": "18.0.11",
"@types/react-dom": "18.0.5",
"@types/tailwindcss": "3.0.10",
"chalk": "5.0.1",
"cheerio": "1.0.0-rc.11",
"cross-env": "^7.0.3",
"cross-fetch": "3.1.5",
"esbuild": "0.14.42",
"esbuild-register": "3.3.2",
"npm-run-all": "4.1.5",
"ora": "6.1.0",
"pkode": "1.5.1",
"prisma": "4.3.1",
"tailwindcss": "3.0.24",
"typescript": "4.7.3"
},
"engines": {
"node": ">=14"
}
}