-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
86 lines (86 loc) · 2.72 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
{
"name": "@gomah/prisma-serverless",
"version": "1.0.0",
"repository": "[email protected]:gomah/prisma-serverless.git",
"author": "Gomah <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"build": "sls package",
"nexus-generate": "npx nexus-prisma-generate --client src/generated/prisma-client --output src/generated/nexus-prisma",
"dev": "npm-run-all --parallel dev:server dev:playground",
"dev:server": "sls offline --dontPrintOutput --stage dev",
"dev:playground": "graphql playground --port 5000",
"deploy:dev": "yarn build && sls deploy --stage development",
"deploy:prod": "yarn build && sls deploy --stage production",
"test:lint": "eslint --ext .js,.ts,.gql,.graphql src/",
"test": "yarn test:lint",
"prisma": "prisma",
"prisma:admin": "prisma admin"
},
"pre-commit": [
"test:lint"
],
"resolutions": {
"graphql": "15.5.1"
},
"dependencies": {
"apollo-server-lambda": "^2.25.2",
"aws-sdk": "2.485.0",
"bcryptjs": "^2.4.3",
"dotenv": "^10.0.0",
"graphql": "^15.5.1",
"graphql-import": "^1.0.2",
"graphql-middleware": "^6.0.7",
"graphql-shield": "^7.5.0",
"graphql-tools": "^6.0.14",
"jsonwebtoken": "^8.5.1",
"nexus": "^1.1.0",
"nexus-prisma": "0.3.8",
"prisma-client-lib": "^1.34.12"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/node": "^7.14.9",
"@babel/preset-env": "^7.14.9",
"@hapi/address": "^4.1.0",
"@types/aws-lambda": "^8.10.81",
"@types/bcryptjs": "^2.4.2",
"@types/dotenv": "^8.2.0",
"@types/jsonwebtoken": "^8.5.4",
"@types/node": "^16.4.10",
"@types/ws": "^7.4.7",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^3.10.1",
"aws-lambda": "^1.0.6",
"babel-loader": "^8.2.2",
"babel-plugin-module-resolver": "^4.1.0",
"copy-webpack-plugin": "^8.1.1",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-import-resolver-webpack": "^0.13.1",
"eslint-plugin-graphql": "^4.0.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"graphql-cli": "^4.1.0",
"graphql-import-loader": "^0.2.1",
"npm-run-all": "^4.1.5",
"pre-commit": "^1.2.2",
"prettier": "^2.2.1",
"prisma": "^2.24.1",
"serverless": "^2.1.1",
"serverless-dotenv-plugin": "^3.9.0",
"serverless-offline": "^6.8.0",
"serverless-prune-plugin": "^1.5.1",
"serverless-webpack": "^5.5.1",
"ts-loader": "^8.1.0",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.8",
"typescript": "4.3.5",
"webpack": "^5.48.0",
"webpack-cli": "^4.3.0",
"webpack-node-externals": "^3.0.0"
}
}