-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 1.19 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
{
"name": "prisma2-f1-demo",
"version": "1.1.0",
"description": "A GraphQL Node.js starter for the Serverless Framework with async/await and unit test support",
"main": "handler.js",
"scripts": {
"prisma:generate": "prisma generate",
"offline": "sls offline",
"deploy": "sls deploy",
"prisma:introspect": "prisma introspect",
"test": "jest"
},
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pimp-my-book/serverless-graphql-nodejs-starter"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-source-map-support": "^1.0.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-3": "^6.24.1",
"copy-webpack-plugin": "^5.1.1",
"jest": "^21.2.1",
"serverless-offline": "^3.25.6",
"serverless-webpack": "^5.1.0",
"webpack": "^4.16.2",
"webpack-node-externals": "^1.6.0"
},
"dependencies": {
"@prisma/cli": "^2.0.0-beta.3",
"@prisma/client": "^2.0.0-beta.3",
"apollo-server-lambda": "^2.5.0",
"babel-runtime": "^6.26.0",
"graphql": "^14.3.0",
"source-map-support": "^0.4.18"
}
}