This repository has been archived by the owner on Jan 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.84 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
{
"name": "destiny-insights-backend",
"version": "1.97.0",
"description": "Backend for destiny-insights apps",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"fix-lint": "eslint . --fix",
"test": "nyc ava --timeout=60s",
"test-exclude-vendors": "nyc ava --match='!*Vendor*' --timeout=60s",
"update-cached-mods": "node -e 'require(\"./src/util/build-cached-mods.js\").updateCachedMods()'",
"update-cached-items": "node -e 'require(\"./src/util/build-cached-items.js\").updateCachedItems()'",
"update-cached-weapon-wish-lists": "node -e 'require(\"./src/util/build-cached-weapon-wish-lists.js\").updateCachedItems()'",
"update-cache": "npm run update-cached-mods && npm run update-cached-items && npm run update-cached-weapon-wish-lists",
"build": "npm set-script prepare '' && npm install --production && rm -rf build && mkdir build && zip -r -q -x='*test*' -x='package-lock.json' -x='*media*' -x='*terraform*' -x=*coverage* -x='*.md' -x='LICENSE' -x='*build*' -x='*.DS_Store*' -x='*.git*' -x='*.nyc*' -x='./.husky*'-x='*node_modules/.cache*' -x='release.config.js' -x='commitlint.config.js' build/destiny-insights-backend.zip . && du -sh build && npm set-script prepare 'husky install'",
"deploy": "aws lambda update-function-code --function-name=destiny-insights-backend --zip-file=fileb://build/destiny-insights-backend.zip --region=us-east-1 1> /dev/null",
"semantic-release": "semantic-release",
"ci": "npm run lint && npm run test",
"cd": "npm run build && npm run deploy",
"prepare": "husky install"
},
"contributors": [
{
"name": "Matt Jarrett",
"web": "https://mattjarrett.dev"
}
],
"repository": {
"type": "git",
"url": "https://github.com/cujarrett/destiny-insights-backend.git"
},
"author": "Matt Jarrett",
"license": "MIT",
"bugs": {
"url": "https://github.com/cujarrett/destiny-insights-backend/issues"
},
"homepage": "https://github.com/cujarrett/destiny-insights-backend#readme",
"dependencies": {
"lambda-api": "~0.11.2",
"node-fetch": "~3.3.0"
},
"devDependencies": {
"@commitlint/cli": "~17.3.0",
"@commitlint/config-conventional": "~17.3.0",
"@semantic-release/changelog": "~6.0.2",
"@semantic-release/commit-analyzer": "~9.0.2",
"@semantic-release/exec": "~6.0.3",
"@semantic-release/git": "~10.0.1",
"@semantic-release/github": "~8.0.7",
"@semantic-release/npm": "~9.0.1",
"@semantic-release/release-notes-generator": "~10.0.3",
"ava": "~5.1.0",
"aws-sdk": "~2.1277.0",
"commitizen": "~4.2.6",
"cz-conventional-changelog": "~3.3.0",
"eslint": "~8.30.0",
"husky": "~8.0.2",
"nyc": "~15.1.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}