-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.2 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
{
"name": "grapdf",
"version": "1.0.0",
"description": "GraphQL powered PDF Generation",
"main": "dist/server.js",
"private": true,
"scripts": {
"prebuild": "cd www && npm install",
"build": "netlify-lambda build src/functions && cd www && npm run build",
"dev": "NODE_ENV=development netlify dev",
"start": "netlify dev",
"test": "jest --watch ./src",
"test:ci": "start-server-and-test start tcp:8888 'jest ./src'"
},
"author": "Christoph Benjamin Weber",
"license": "MIT",
"dependencies": {
"@react-pdf/renderer": "2.0.21",
"apollo-server-lambda": "2.25.4",
"graphql": "14.7.0",
"graphql-constraint-directive": "1.4.1",
"netlify-lambda": "2.0.15",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@babel/cli": "7.17.10",
"@babel/core": "7.18.2",
"@babel/node": "7.17.10",
"@babel/preset-env": "7.18.2",
"@babel/preset-react": "7.17.12",
"babel-jest": "27.5.1",
"isomorphic-fetch": "3.0.0",
"jest": "27.5.1",
"netlify-cli": "3.2.3",
"prettier": "2.5.1",
"start-server-and-test": "1.14.0"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"tabWidth": 2
}
}