-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.51 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.51 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
57
58
59
60
61
62
63
64
65
66
67
{
"imports": {
"#pathJavascriptExamples/*": "./folderSource/folderTopics/*",
"#pathTypescriptExamples/*": "./folderDist/folderTopics/*"
},
"type": "module",
"name": "examplenode",
"version": "1.0.0",
"description": "EXAMPLE OF NODE PROJECT",
"main": "./folderDist/index.js",
"scripts": {
"hello": "node ./folderSource/folderTopics/folderNpmScripts/exampleNpmScripts.js",
"tsc-nodemon": "nodemon --exec \"tsc --skipLibCheck && node %npm_config_jsfile%\"",
"esbuild-nodemon": "nodemon --exec \"esbuild-node-tsc --config=esbuild.development.config.js && node %npm_config_jsfile%\"",
"database": "prisma db push --schema=./prisma/schema.prisma && prisma generate --schema=./prisma/schema.prisma",
"studio": "prisma studio --schema=./prisma/schema.prisma",
"codegen": "graphql-codegen --watch --config ./folderSource/folderTopics/folderGraphqlCodegen/folderApplication/folderCodegenConfigurations/codegen.yml",
"crossenv-example": "cross-env dotenvDevelopmentMode=true node ./folderSource/folderTopics/folderCrossenv/exampleCrossenv.js\"",
"tsc-dev": "cross-env dotenvDevelopmentMode=true npm run tsc-nodemon --jsfile=./folderDist/index.js\"",
"esbuild-dev": "cross-env dotenvDevelopmentMode=true npm run esbuild-nodemon --jsfile=./folderDist/index.js\"",
"tsx-dev": "tsx watch ./folderSource/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@graphql-codegen/add": "^3.2.1",
"@graphql-codegen/cli": "^2.11.6",
"@graphql-codegen/graphql-modules-preset": "^2.5.1",
"@graphql-codegen/typescript": "^2.7.3",
"@graphql-codegen/typescript-resolvers": "^2.7.3",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/node": "^18.6.5",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"cpy": "^9.0.1",
"esbuild": "^0.14.51",
"esbuild-node-tsc": "^2.0.2",
"eslint": "^8.20.0",
"nodemon": "^2.0.19",
"prisma": "^4.2.1",
"rimraf": "^3.0.2",
"tsx": "^3.9.0",
"typescript": "^4.7.4"
},
"dependencies": {
"@prisma/client": "^4.2.1",
"@trpc/server": "^10.0.0-rc.3",
"altair-static": "^4.5.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.1",
"ejs": "^3.1.8",
"express": "^4.18.1",
"express-graphql": "^0.12.0",
"graphql-modules": "^2.1.0",
"graphql-playground-html": "^1.6.30",
"graphql-subscriptions": "^2.0.0",
"graphql-ws": "^5.10.0",
"ws": "^8.8.1",
"zod": "^3.19.1"
}
}