-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.53 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.53 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@thrashplay/devops-tools",
"version": "0.0.1",
"description": "Utilities, libraries, and tools to help with DevOps operations.",
"author": "Sean Kleinjung",
"license": "MIT",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"bootstrap": "yarn lerna bootstrap && yarn _build:ts-config",
"build": "yarn _build:ts-config && yarn run-p _build:types _build:js",
"build:clean": "run-s clean build",
"build:dev": "yarn _build:ts-config && yarn run-p _build:types _build:js:dev",
"build:watch": "yarn _build:ts-config && yarn run-p _build:watch:js _build:watch:types",
"clean": "rm -rf packages/*/dist && rm -rf packages/*/lib && rm -rf packages/*/tsconfig.tsbuildinfo && rm -f tsconfig.tsbuildinfo",
"clean:all": "yarn clean && yarn _clean:ts-config && yarn _clean:node_modules",
"lint": "eslint . --ext .ts,.js",
"lint:fix": "eslint . --fix --ext .ts,.js",
"publish:tagged": "yarn lerna publish from-git",
"reset": "yarn clean:all && yarn && yarn bootstrap && yarn build",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"version:graduate": "yarn lerna version --conventional-graduate",
"_build:js": "lerna exec --stream -- node ../../build-lib/thrashpack.js",
"_build:js:dev": "lerna run --parallel build:dev",
"_build:ts-config": "thrasher create-tsconfigs",
"_build:types": "tsc --build tsconfig.build-types.json",
"_build:watch:js": "lerna exec --parallel -- webpack --watch --env.name dev",
"_build:watch:types": "tsc --build tsconfig.build-types.json --watch",
"_clean:node_modules": "rm -rf node_modules && rm -rf packages/*/node_modules",
"_clean:ts-config": "rm -f packages/*/tsconfig.json",
"postinstall": "patch-package"
},
"eslintConfig": {
"extends": "airbnb-base"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged",
"pre-push": "yarn lint && yarn test"
}
},
"lint-staged": {
"*.{ts,js}": [
"yarn lint:fix",
"git add",
"yarn test --bail --findRelatedTests"
]
},
"devDependencies": {
"@babel/cli": "^7.7.5",
"@babel/core": "^7.7.5",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-export-default-from": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.4",
"@babel/preset-env": "^7.7.5",
"@babel/preset-typescript": "^7.7.4",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@thrashplay/thrasher": "^0.0.0",
"@types/jest": "^24.0.23",
"@types/node": "^12.12.15",
"@typescript-eslint/eslint-plugin": "^2.3.0",
"@typescript-eslint/parser": "^2.3.0",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"circular-dependency-plugin": "^5.2.0",
"dotenv": "^8.2.0",
"eslint": "^6.4.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-flowtype": "^4.3.0",
"eslint-plugin-import": "^2.18.2",
"fork-ts-checker-webpack-plugin": "^3.1.1",
"glob": "^7.1.6",
"husky": "^3.0.5",
"jest": "^24.9.0",
"lerna": "^3.19.0",
"lint-staged": "^9.3.0",
"lodash": "^4.17.15",
"npm-run-all": "^4.1.5",
"patch-package": "^6.2.0",
"shx": "^0.3.2",
"ts-jest": "^24.2.0",
"ts-loader": "^6.2.1",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"typescript": "^3.7.3",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-merge": "^4.2.2",
"webpack-node-externals": "^1.7.2"
}
}