-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.14 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": "appsync-crud-api",
"version": "1.0.0",
"description": "AWS AppSync API to perform CRUD operations",
"main": "index.js",
"scripts": {
"bundle": "webpack",
"formatCheck": "prettier --check --ignore-path .gitignore \"./**/*.{js,json}\"",
"format": "prettier --write --ignore-path .gitignore \"./**/*.{js,json}\""
},
"repository": {
"type": "git",
"url": "git+"
},
"author": "Husnain Warraich",
"license": "MIT",
"dependencies": {
"aws-sdk": "^2.1053.0",
"mysql2": "^2.3.3",
"pg-hstore": "^2.3.4",
"sequelize": "^6.16.2",
"serverless": "^3.3.0",
"ulid": "^2.3.0"
},
"devDependencies": {
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"prettier": "^1.19.1",
"serverless-appsync-plugin": "^1.3.0",
"serverless-dotenv-plugin": "^2.4.2",
"serverless-plugin-split-stacks": "^1.9.3",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"zip-webpack-plugin": "^3.0.0"
}
}