-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
86 lines (86 loc) · 2.36 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
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
{
"name": "eventual-monorepo",
"version": "0.0.0",
"private": true,
"repository": "git@github.com:functionless/eventual",
"author": "Functionless Corp.",
"license": "Apache-2.0",
"packageManager": "pnpm@8.5.0",
"scripts": {
"build": "tsc -b && turbo run build",
"build:clean": "git clean -fqdx . && pnpm i && pnpm build",
"clean:build": "turbo run clean:build",
"clean:deep": "git clean -fqdx .",
"clean:tsbuildinfo": "find . -name tsconfig.tsbuildinfo -exec rm {} \\;",
"deploy": "turbo run deploy",
"hotswap": "turbo run hotswap",
"dev": "turbo run dev --parallel",
"prettier": "prettier --write .",
"lint": "eslint . --fix",
"prepare": "husky install",
"test": "NODE_OPTIONS=--experimental-vm-modules turbo run test",
"test:runtime": "pnpm --filter tests-runtime test:runtime-deploy",
"test:cli": "pnpm --filter tests-runtime test:cli",
"test:smoke": "./scripts/smoke-test",
"test:local": "pnpm -r --filter tests-runtime run test:local-start",
"typecheck": "tsc -b",
"watch": "tsc -b -w",
"export": "turbo run export",
"nag": "pnpm --filter tests-cdk run nag"
},
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/node": "^18",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.2",
"jest": "^29.5.0",
"lerna": "^6.6.2",
"lint-staged": "^13.0.3",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"turbo": "^1.9.9",
"typescript": "^5"
},
"lint-staged": {
"*.{tsx,jsx,ts,js}": [
"eslint --fix",
"prettier --write"
]
},
"jest": {
"displayName": "workspace",
"projects": [
"<rootDir>/packages/@eventual/*"
],
"roots": [
"<rootDir>"
],
"moduleDirectories": [
"node_modules",
"src"
],
"extensionsToTreatAsEsm": [
".ts"
],
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
},
"transform": {
"^.+\\.(t|j)sx?$": [
"ts-jest",
{
"tsconfig": "tsconfig.test.json",
"useESM": true
}
]
}
}
}