-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.64 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
{
"name": "@fmtk/custom-resources",
"author": "Gordon Leigh <[email protected]>",
"repository": "https://github.com/futurematik/custom-resources",
"license": "MIT",
"private": true,
"scripts": {
"build": "FORCE_COLOR=1 lerna run build --stream",
"cdk": "yarn workspace test-deploy cdk",
"clean-npm": "find . -name node_modules -type d -prune -exec rm -rf {} \\;",
"clean": "lerna run clean",
"compile": "FORCE_COLOR=1 lerna run compile --stream",
"lint": "FORCE_COLOR=1 lerna run --parallel lint",
"postversion": "git push --follow-tags",
"prepublish": "yarn build",
"preversion": "yarn build",
"watch:compile": "FORCE_COLOR=1 lerna run --parallel watch"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": []
},
"devDependencies": {
"@fmtk/aws-custom-resource": "^0.3.1",
"@fmtk/rollup-plugin-ts": "^0.3.1",
"@fmtk/ts-build": "^0.5.0",
"@fmtk/validation": "^3.4.1",
"@typescript-eslint/eslint-plugin": "^2.3.0",
"@typescript-eslint/parser": "^2.3.0",
"aws-sdk": "^2.547.0",
"builtin-modules": "^3.1.0",
"chokidar": "^3.2.1",
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"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-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.2",
"source-map-support": "^0.5.13",
"ts-node": "^8.4.1",
"typescript": "^3.6.3"
}
}