-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.52 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
{
"name": "@fmtk/cfntools",
"author": "Gordon Leigh <[email protected]>",
"repository": "https://github.com/futurematik/cfntools",
"license": "MIT",
"private": true,
"scripts": {
"build": "FORCE_COLOR=1 lerna run build --stream",
"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/rollup-plugin-ts": "^0.3.1",
"@types/jest": "^24.0.23",
"@typescript-eslint/eslint-plugin": "^2.3.0",
"@typescript-eslint/parser": "^2.3.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",
"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-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.2",
"source-map-support": "^0.5.13",
"ts-jest": "^24.2.0",
"ts-node": "^8.5.4",
"typescript": "^3.6.3"
}
}