-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.95 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
{
"name": "my-remix-app-98b0",
"private": true,
"sideEffects": false,
"scripts": {
"build": "run-s build:*",
"build:css": "tailwindcss -m -i styles/app.css -o app/styles/app.css",
"build:remix": "remix build && node ./others/build-info.js",
"build:server": "esbuild --platform=node --format=cjs ./server/index.ts --outfile=build/server.js",
"cy:open": "cypress open",
"cy:run": "cypress run",
"dev": "run-p dev:*",
"dev:build": "cross-env NODE_ENV=development npm run build:server -- --watch",
"dev:server": "cross-env NODE_ENV=development node --inspect --require dotenv/config --require ./mocks ./build/server.js",
"dev:content": "node -r esbuild-register -r dotenv/config others/refresh-on-content-change.ts",
"dev:css": "tailwindcss -w -i styles/app.css -o app/styles/app.css",
"dev:remix": "cross-env NODE_ENV=development remix watch",
"format": "prettier --write \"**/*.+(js|jsx|json|yml|yaml|css|less|scss|ts|tsx|md|mdx)\"",
"lint": "eslint --cache --cache-location ./node_modules/.cache/.eslintcache --ext js,jsx,ts,tsx .",
"new:blog": "node -r esbuild-register others/new-blog.ts",
"setup": "prisma migrate dev && npm run new:blog",
"start": "cross-env NODE_ENV=production node ./build/server.js",
"start:mocks": "cross-env NODE_ENV=production node --require ./mocks --require dotenv/config ./build/server.js",
"test": "vitest",
"test:e2e:dev": "cross-env RUNNING_E2E=true start-server-and-test dev http://localhost:3000/ cy:open",
"test:e2e:run": "cross-env RUNNING_E2E=true PORT=8811 start-server-and-test dev http://localhost:8811/ cy:run",
"typecheck": "tsc -b"
},
"dependencies": {
"@octokit/plugin-throttling": "^3.5.2",
"@octokit/rest": "^18.12.0",
"@prisma/client": "^3.9.2",
"@reach/skip-nav": "^0.16.0",
"@remix-run/express": "^1.3.4",
"@remix-run/node": "^1.3.4",
"@remix-run/react": "^1.3.4",
"@remix-run/server-runtime": "^1.3.4",
"clsx": "^1.1.1",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
"date-fns": "^2.28.0",
"express": "^4.17.3",
"highlight.js": "^11.4.0",
"lru-cache": "^6.0.0",
"mdx-bundler": "^8.0.1",
"morgan": "^1.10.0",
"p-queue": "^7.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rehype-highlight": "^5.0.2",
"remark-autolink-headings": "^7.0.1",
"remark-gfm": "^3.0.1",
"remark-slug": "^7.0.1",
"remix-seo": "^0.1.0",
"sort-package-json": "^1.55.0",
"tiny-invariant": "^1.2.0"
},
"devDependencies": {
"@remix-run/dev": "^1.3.4",
"@remix-run/eslint-config": "^1.3.4",
"@tailwindcss/typography": "^0.5.1",
"@testing-library/cypress": "^8.0.2",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.5.0",
"@types/compression": "^1.7.2",
"@types/eslint": "^8.4.1",
"@types/express": "^4.17.13",
"@types/fs-extra": "^9.0.13",
"@types/inquirer": "^8.2.0",
"@types/lodash.kebabcase": "^4.1.6",
"@types/lru-cache": "^5.1.1",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.23",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"@vitejs/plugin-react": "^1.2.0",
"c8": "^7.11.0",
"chokidar": "^3.5.3",
"cypress": "^9.5.0",
"dotenv": "^16.0.0",
"esbuild-register": "^3.3.2",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.3.0",
"fs-extra": "^10.0.0",
"happy-dom": "^2.55.0",
"inquirer": "^8.2.0",
"jest": "^27.5.1",
"jest-watch-typeahead": "^1.0.0",
"lodash.kebabcase": "^4.1.1",
"msw": "^0.36.8",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"prettier-plugin-tailwindcss": "^0.1.7",
"prisma": "^3.9.2",
"start-server-and-test": "^1.14.0",
"tailwindcss": "^3.0.23",
"typescript": "^4.6.3",
"vite": "^2.9.0",
"vite-tsconfig-paths": "^3.4.1",
"vitest": "^0.8.0"
},
"engines": {
"node": ">=14"
}
}