-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.73 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
{
"name": "dns-tool",
"private": true,
"version": "1.0.1",
"dependencies": {
"netlify-lambda": "^2.0.15",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-proposal-export-default-from": "^7.16.0",
"@babel/plugin-proposal-object-rest-spread": "^7.16.0",
"@babel/plugin-transform-object-assign": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@types/aws-lambda": "^8.10.85",
"@types/node": "^16.11.9",
"@types/react": "^17.0.36",
"@types/react-dom": "^17.0.11",
"@types/react-helmet": "^6.1.4",
"babel-preset-gatsby": "^2.2.0",
"core-js": "^3.19.1",
"gatsby": "^4.2.0",
"gatsby-image": "^3.11.0",
"gatsby-plugin-manifest": "^4.2.0",
"gatsby-plugin-offline": "^5.2.0",
"gatsby-plugin-react-helmet": "^5.2.0",
"gatsby-plugin-react-svg": "^3.1.0",
"gatsby-plugin-sharp": "^4.2.0",
"gatsby-plugin-typescript": "^4.2.0",
"gatsby-source-filesystem": "^4.2.0",
"gatsby-transformer-sharp": "^4.2.0",
"prettier": "^2.4.1",
"prop-types": "^15.7.2",
"typescript": "^4.5.2"
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
],
"license": "MIT",
"scripts": {
"build": "yarn build:app && yarn build:lambda",
"build:app": "gatsby build",
"build:lambda": "BABEL_ENV=lambda netlify-lambda build src/lambda",
"format": "prettier --write src/**/*.{js,jsx}",
"start:app": "gatsby develop",
"start:lambda": "BABEL_ENV=lambda netlify-lambda serve src/lambda",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\""
}
}