-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 2.42 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
{
"name": "buyte",
"version": "1.0.0",
"description": "Buyte core services (Serverless API, CLI and Scripts)",
"repository": "[email protected]:rsoury/buyte.git",
"author": "Ryan Soury @ Web Doodle",
"license": "BSD-3-Clause",
"scripts": {
"build": "rollup -c",
"build:local": "yarn amplify:generate-config && yarn build",
"clean": "rimraf build",
"format": "./node_modules/.bin/prettier --write \"{src,serverless,scripts}/**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"lint": "eslint -c ./.eslintrc.js \"{src,serverless,scripts}/**/*.{js,jsx,ts,tsx}\"",
"amplify:generate-config": "scripty",
"graphql:bootstrap": "scripty",
"user:attributes": "scripty",
"cognito:style": "scripty",
"schema-link:dev": "ln -s ./amplify/schema.graphql ./amplify/dev/amplify/backend/api/buytedev/schema.graphql",
"schema-link:prod": "ln -s ./amplify/schema.graphql ./amplify/prod/amplify/backend/api/buyteprod/schema.graphql"
},
"dependencies": {
"@serverless-chrome/lambda": "^1.0.0-55",
"adyen-cse-web": "github:rsoury/adyen-cse-web",
"chrome-remote-interface": "^0.27.1"
},
"devDependencies": {
"@aws-amplify/cli": "^6.1.1",
"amazon-cognito-identity-js": "^3.0.7",
"aws-amplify": "^1.1.30",
"aws-appsync": "^1.7.1",
"aws-sdk": "^2.466.0",
"colors": "^1.3.3",
"es6-promise": "^4.2.5",
"eslint": "^6.0.1",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"esm": "^3.2.25",
"graphql-tag": "^2.10.1",
"husky": "^1.3.1",
"if-env": "^1.0.4",
"inquirer": "^6.2.2",
"isomorphic-fetch": "^2.2.1",
"jsonfile": "^5.0.0",
"lint-staged": "^8.1.0",
"lodash.get": "^4.4.2",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"prettier": "^1.15.3",
"prompt": "^1.0.0",
"rimraf": "^2.6.3",
"s3-deploy": "^1.2.0",
"scripty": "^1.9.1",
"serverless-dotenv-plugin": "^3.9.0",
"serverless-go-build": "^0.0.6",
"serverless-iam-roles-per-function": "^3.2.0",
"serverless-plugin-scripts": "^1.0.2",
"serverless-pseudo-parameters": "^2.6.1",
"serverless-scriptable-plugin": "^1.2.1",
"tracer": "^0.9.8",
"ws": "^6.1.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.+(js|jsx)": [
"yarn lint --fix",
"git add"
],
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"yarn format",
"git add"
]
},
"scripty": {
"silent": true
}
}