-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.84 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.84 KB
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
{
"name": "@fmtk/simple-http-root",
"version": "0.0.0",
"main": "index.js",
"author": "Gordon Leigh <gordon.leigh@futurematik.co.uk>",
"license": "MIT",
"private": true,
"scripts": {
"build": "FORCE_COLOR=1 lerna run --stream build",
"cdk": "yarn workspace @fmtk/simple-http-lambda-deploy cdk",
"clean": "lerna run clean",
"clean-npm": "find . -name node_modules -type d -prune -exec rm -rf {} \\;",
"compile": "lerna run compile",
"debug:lambda": "yarn dev:lambda --debug-port=5858",
"dev:lambda": "yarn workspace @fmtk/simple-http-lambda-deploy start",
"lint": "FORCE_COLOR=1 lerna run --parallel --stream lint",
"postversion": "git push --follow-tags",
"prepare": "yarn build",
"preversion": "yarn build",
"test": "FORCE_COLOR=1 lerna run --stream test",
"watch:compile": "FORCE_COLOR=1 lerna run --parallel --stream watch:compile"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"@fmtk/simple-http-lambda-deploy/aws-sdk",
"@fmtk/simple-http-lambda-deploy/aws-sdk/**"
]
},
"devDependencies": {
"@fmtk/rollup-plugin-ts": "^0.3.2",
"@types/aws-lambda": "^8.10.33",
"@types/jest": "^24.0.18",
"@typescript-eslint/eslint-plugin": "^2.3.0",
"@typescript-eslint/parser": "^2.3.0",
"aws-cdk": "^1.12.0",
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"glob": "^7.1.4",
"jest": "^24.9.0",
"lerna": "^3.16.4",
"prettier": "^1.18.2",
"rollup": "^1.23.1",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.2",
"ts-jest": "^24.1.0",
"ts-node": "^8.4.1",
"tslib": "^1.10.0",
"typescript": "^3.6.3"
}
}