-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
79 lines (79 loc) · 2.5 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
{
"name": "twitter",
"private": true,
"version": "1.0.0",
"description": "Social network developed with some Serverless stuff ☁️",
"main": "index.js",
"scripts": {
"sls": "sls",
"exportEnv": "sls export-env",
"exportEnvStaging": "sls export-env -s staging",
"jest": "jest",
"test": "jest --verbose ./__tests__/test_cases/unit --silent",
"integration-test": "jest --verbose ./__tests__/test_cases/integration --silent",
"e2e-test": "jest --verbose ./__tests__/test_cases/e2e --silent",
"create-cognito-user": "aws cognito-idp --region eu-west-1 sign-up --client-id 36fscdpd5co4sqijf2jdiumi1f --username [email protected] --password 12345678 --user-attributes Name=name,Value=Eduardo",
"load-test": "dotenv artillery run ./.artillery/load-test.yml",
"load-test:debug": "DEBUG=http,http:response dotenv artillery run ./.artillery/load-test.yml",
"commit": "git-cz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eduardo3g/twitter.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/eduardo3g/twitter/issues"
},
"homepage": "https://github.com/eduardo3g/twitter#readme",
"devDependencies": {
"@commitlint/cli": "^16.0.2",
"@commitlint/config-conventional": "^16.0.0",
"@types/jest": "^26.0.15",
"amplify-appsync-simulator": "^1.23.9",
"amplify-velocity-template": "^1.3.4",
"artillery": "^2.0.0-22",
"async-retry": "^1.3.1",
"aws-sdk": "^2.792.0",
"axios": "^0.21.0",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^8.2.0",
"dotenv-cli": "^6.0.0",
"husky": "^7.0.4",
"jest": "^26.6.3",
"serverless": "3.22.0",
"serverless-appsync-plugin": "^1.4.0",
"serverless-export-env": "^1.4.0",
"serverless-iam-roles-per-function": "^3.2.0",
"serverless-layers": "^2.5.4",
"serverless-plugin-ifelse": "^1.0.7",
"serverless-plugin-log-retention": "^2.0.0",
"ws": "^7.4.4",
"yargs": "^17.5.1"
},
"dependencies": {
"@middy/core": "^1.5.2",
"@middy/ssm": "^1.5.2",
"algoliasearch": "^4.8.5",
"aws-appsync": "^4.0.3",
"chance": "^1.1.7",
"graphql": "^15.5.0",
"graphql-tag": "^2.11.0",
"isomorphic-fetch": "^3.0.0",
"lodash": "^4.17.20",
"ulid": "^2.3.0",
"uuid": "^8.3.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
}
}