-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
113 lines (113 loc) · 3.6 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "appsync-rds-todo",
"version": "0.1.0",
"keywords": [
"AppSync",
"AWS",
"serverless-framework",
"AWS Lambdas",
"serverless",
"RDS",
"postgres",
"GraphQL"
],
"scripts": {
"debug": "export SLS_DEBUG=*",
"build": "npx serverless package --stage develop",
"build-dev": "sls package --stage=develop",
"link-serverless-appsync-simulator": "yarn link serverless-appsync-simulator",
"start-offline": "sls offline start --stage=develop --offline",
"postinstall": "rm -rf node_modules/@conduitvc/appsync-emulator-serverless/node_modules/velocityjs",
"format": "prettier-standard './**/**/*.json'",
"lint": "npm run lint:js",
"lint:eslint": "eslint --ignore-path .gitignore --ignore-pattern internals/scripts",
"lint:eslint:fix": "eslint --ignore-path .gitignore --ignore-pattern internals/scripts --fix",
"lint:js": "npm run lint:eslint -- . ",
"lint:staged": "lint-staged"
},
"pre-commit": "lint:staged",
"lint-staged": {
"*.js": [
"npm run lint:eslint:fix .",
"git add --force"
],
"*.json": [
"prettier --write",
"git add --force"
]
},
"dependencies": {
"@aws-amplify/api": "^2.1.6",
"@aws-amplify/pubsub": "^2.1.7",
"@babel/core": "^7.11.4",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-syntax-class-properties": "7.8.3",
"@sendgrid/mail": "^7.4.2",
"amplify-velocity-template": "^1.4.5",
"aws-sdk": "^2.859.0",
"axios": "^0.21.1",
"babel-loader": "^8.1.0",
"babel-preset-env": "^1.7.0",
"babel-runtime": "^6.26.0",
"deep-map-keys": "^2.0.1",
"espree": "^7.1.0",
"gql": "^1.1.2",
"graphql": "^15.5.0",
"graphql-playground-middleware-koa": "^1.6.17",
"graphql-sequelize": "^9.4.3",
"graphql-sequelize-schema-generator": "^0.2.3",
"graphql-tag": "^2.11.0",
"koa": "^2.13.0",
"merge-graphql-schemas": "^1.7.8",
"moment": "^2.29.1",
"mysql2": "^2.1.0",
"pg": "^8.6.0",
"pg-hstore": "^2.3.4",
"pluralize": "^8.0.0",
"ramda": "^0.27.0",
"sequelize": "^6.6.4",
"sequelize-cli": "^6.2.0",
"sequelize-mock": "^0.10.2",
"serverless": "^2.51.2",
"serverless-appsync-plugin": "^1.8.0",
"serverless-appsync-simulator": "^0.18.0",
"serverless-dependson-plugin": "^1.1.2",
"serverless-dotenv-plugin": "^3.3.0",
"serverless-offline": "^6.8.0",
"serverless-plugin-additional-stacks": "^1.5.0",
"serverless-plugin-scripts": "^1.0.2",
"serverless-plugin-split-stacks": "^1.11.0",
"serverless-plugin-warmup": "^5.2.1",
"serverless-sequelize-migrations": "^1.1.1",
"serverless-webpack": "^5.3.4",
"shelljs": "^0.8.4",
"source-map-support": "^0.5.19",
"webpack": "^4.44.1",
"webpack-node-externals": "^2.5.2"
},
"devDependencies": {
"@babel/polyfill": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"aws-cognito-cli": "^1.0.9",
"babel-eslint": "^10.1.0",
"copy-webpack-plugin": "5.1.1",
"dotenv": "^8.2.0",
"eslint": "5.16.0",
"eslint-config-prettier": "^4.1.0",
"eslint-config-prettier-standard": "^3.0.1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-standard": "^4.0.1",
"faker": "^5.1.0",
"lint-staged": "^11.0.0",
"prettier": "^2.2.1",
"prettier-config-standard": "^1.0.1",
"prettier-standard": "^16.4.1",
"pretty-quick": "^3.1.0",
"serverless-nested-stack": "^0.0.7"
}
}