Added Ts.ED

This commit is contained in:
2022-09-04 21:00:45 +02:00
parent d0b69d7ae1
commit f4162f7f06
45 changed files with 4046 additions and 0 deletions

32
frontend/package.json Normal file
View File

@@ -0,0 +1,32 @@
{
"name": "vite-template-solid",
"version": "0.0.0",
"description": "",
"scripts": {
"start": "vite",
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"codegen": "graphql-codegen --config codegen.yml",
"codegen:watch": "codegen -- --watch"
},
"license": "MIT",
"devDependencies": {
"@graphql-codegen/cli": "2.12.0",
"@graphql-codegen/introspection": "^2.2.1",
"@graphql-codegen/typescript": "2.7.3",
"@graphql-codegen/typescript-operations": "2.5.3",
"@graphql-codegen/typescript-urql": "^3.6.4",
"@graphql-codegen/urql-introspection": "2.2.1",
"typescript": "^4.8.2",
"urql": "^3.0.2",
"vite": "^3.0.9",
"vite-plugin-solid": "^2.3.0"
},
"dependencies": {
"@solidjs/router": "^0.4.3",
"@urql/core": "^3.0.3",
"graphql": "^16.6.0",
"solid-js": "^1.5.1"
}
}