-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.98 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.98 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
58
{
"private": true,
"scripts": {
"build": "yarn clean && yarn compile && yarn buildsub && yarn lint && yarn bundle",
"buildsub": "lerna run build --stream",
"bundle": "lerna run bundle --parallel --stream",
"cdk": "yarn workspace test-deploy cdk",
"clean-npm": "rimraf node_modules/ 'packages/*/node_modules/'",
"clean": "rimraf build/ dist/ 'packages/*/build/' 'packages/*/dist' 'packages/*/lib' 'packages/*/*.tsbuildinfo' 'test/*/build/' 'test/*/dist' 'test/*/lib' 'test/*/*.tsbuildinfo'",
"compile": "node tsbuild.js",
"index": "lerna run --parallel index",
"lint": "lerna run --parallel lint",
"testdeploy": "yarn workspace @cfnutil-test/deploy-cra-test start",
"watch:compile": "node tsbuild.js --watch --incremental"
},
"workspaces": {
"packages": [
"packages/*",
"test/*"
],
"nohoist": []
},
"devDependencies": {
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^8.1.0",
"@types/archiver": "^3.1.0",
"@types/aws-lambda": "^8.10.56",
"@types/debug": "^4.1.5",
"@types/lodash.throttle": "^4.1.6",
"@types/mime-types": "^2.1.0",
"@types/minimist": "^1.2.0",
"@types/node": "^14.0.13",
"@types/progress": "^2.0.3",
"@types/yazl": "^2.4.2",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"aws-sdk": "^2.697.0",
"create-react-app": "^3.4.1",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-prettier": "^3.1.3",
"ignore": "^5.1.8",
"lerna": "^3.22.1",
"minimist": "^1.2.5",
"modernscript": "^0.1.0",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"rollup": "^2.18.2",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-sourcemaps": "^0.6.2",
"rollup-plugin-terser": "^6.1.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
}
}