-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 979 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 979 Bytes
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
{
"name": "grafbase-with-solid",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "solid-start dev",
"build": "solid-start build",
"start": "solid-start start",
"graphql": "graphql-codegen --config ./src/graphql/codegen.yml -r dotenv/config"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.13.11",
"@graphql-codegen/typed-document-node": "^2.3.6",
"@graphql-codegen/typescript": "^2.8.1",
"@graphql-codegen/typescript-operations": "^2.5.6",
"autoprefixer": "^10.4.12",
"postcss": "^8.4.18",
"prettier": "^2.7.1",
"solid-start-node": "^0.2.0",
"tailwindcss": "^3.2.0",
"typescript": "^4.8.4",
"vite": "^3.1.8"
},
"dependencies": {
"@solidjs/meta": "^0.28.0",
"@solidjs/router": "^0.5.0",
"daisyui": "^2.38.1",
"graphql": "^16.6.0",
"solid-js": "^1.6.0",
"solid-start": "^0.2.0",
"undici": "^5.11.0"
},
"engines": {
"node": ">=16"
}
}