-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.18 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
52
53
54
55
{
"name": "automation-poc",
"version": "0.0.0",
"private": true,
"workspaces": [
"packages/*",
"services/*"
],
"repository": {
"type": "git",
"url": "https://github.com/pmpwith2i/report_automation"
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"test": "turbo run test",
"coverage": "nyc npm run test",
"deploy": "turbo run deploy --filter=@packages/aws-cdk",
"cdk:diff": "cd packages/aws-cdk && npx cdk diff",
"format": "prettier --write \"**/*.{ts,tsx,md}\" && turbo run lint:fix"
},
"devDependencies": {
"@packages/eslint-config-custom": "*",
"@types/mysql": "^2.15.21",
"esbuild": "^0.15.14",
"prettier": "latest",
"tsconfig-paths": "^4.1.0",
"turbo": "latest"
},
"nyc": {
"include": [
"services/**/src/**/*"
],
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"html",
"lcov"
],
"all": true
},
"engines": {
"node": ">=14.0.0"
},
"packageManager": "[email protected]",
"dependencies": {
"beachball": "^2.31.5"
}
}