-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.37 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
{
"name": "iw-next-serverless-app",
"version": "0.0.1",
"description": "",
"main": "server/index.js",
"keywords": [
"serverless",
"nextjs",
"lambda"
],
"scripts": {
"test": "npx jest --config test/jest.config.js",
"clean": "rimraf .next && rimraf .serverless",
"build": "npm run clean && cross-env NODE_ENV=production next build",
"start": "cross-env NODE_ENV=development nodemon --watch",
"lint": "npx eslint --ext jsx,js src test",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"package": "serverless package --stage production --region eu-west-1",
"deploy": "serverless deploy --package /.serverless --stage production --region eu-west-1"
},
"dependencies": {
"@zeit/next-css": "^1.0.1",
"aws-appsync": "^1.0.22",
"aws-appsync-react": "^1.0.13",
"graphql-tag": "^2.9.2",
"next": "^8.0.3",
"next-apollo": "^1.0.13",
"next-apollo-appsync": "^0.0.7",
"next-aws-lambda": "^2.0.5-alpha.0",
"react": "^16.8.4",
"react-apollo": "^2.1.4",
"react-dom": "^16.8.4",
"react-icons": "^3.7.0",
"serverless-offline": "^5.5.0",
"styled-components": "^4.0.0",
"uuid": "^3.2.1"
},
"devDependencies": {
"@babel/core": "7.3.4",
"@storybook/addon-actions": "^5.1.9",
"@storybook/addon-links": "^5.1.9",
"@storybook/addons": "^5.1.9",
"@storybook/react": "^5.1.9",
"aws-serverless-express": "^3.3.6",
"babel-eslint": "^10.0.1",
"babel-jest": "24.1.0",
"babel-loader": "^8.0.6",
"babel-plugin-styled-components": "^1.8.0",
"cross-env": "^5.2.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^5.6.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-react-app": "^3.0.3",
"eslint-loader": "2.1.1",
"eslint-plugin-flowtype": "2.50.3",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jest": "^21.24.1",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.12.4",
"express": "^4.17.1",
"jest": "^24.8.0",
"jest-styled-components": "^6.3.3",
"next-aws-lambda": "^2.0.5-alpha.0",
"next-routes": "^1.4.2",
"nodemon": "^1.19.1",
"prop-types": "^15.7.2",
"react-addons-test-utils": "^15.6.2",
"react-router-dom": "^5.0.1",
"react-test-renderer": "^16.8.6",
"serverless": "^1.39.1",
"serverless-nextjs-plugin": "^1.8.1"
}
}