forked from grafbase/grafbase
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.59 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.59 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
{
"name": "grafbase-with-remix",
"version": "0.0.1",
"private": true,
"sideEffects": false,
"scripts": {
"build": "yarn build:css && remix build",
"build:css": "tailwindcss -m -i ./styles/app.css -o app/styles/app.css",
"dev": "concurrently \"yarn dev:css\" \"remix dev\"",
"dev:css": "tailwindcss -w -i ./styles/app.css -o app/styles/app.css",
"graphql": "graphql-codegen --config ./app/graphql/codegen.yml -r dotenv/config"
},
"dependencies": {
"@headlessui/react": "^1.6.6",
"@remix-run/node": "^1.5.1",
"@remix-run/react": "^1.5.1",
"@remix-run/vercel": "^1.5.1",
"@vercel/node": "^2.0.0",
"graphql": "^16.5.0",
"graphql-request": "^4.3.0",
"lodash.debounce": "^4.0.8",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"remix-themes": "^1.1.6"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.11.6",
"@graphql-codegen/typed-document-node": "^2.3.3",
"@graphql-codegen/typescript": "^2.7.3",
"@graphql-codegen/typescript-operations": "^2.5.3",
"@remix-run/dev": "^1.5.1",
"@remix-run/eslint-config": "^1.5.1",
"@remix-run/serve": "^1.5.1",
"@types/lodash.debounce": "^4.0.7",
"@types/react": "^17.0.45",
"@types/react-dom": "^17.0.17",
"autoprefixer": "^10.4.8",
"concurrently": "^7.3.0",
"eslint": "^8.15.0",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"tailwindcss": "^3.1.8",
"typescript": "^4.6.4"
},
"engines": {
"node": ">=14"
},
"eslintIgnore": [
"/node_modules",
"/build",
"/public/build"
],
"prettierIgnore": [
"/app/styles/app.css"
]
}