-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.17 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.17 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
{
"name": "functionless-samples",
"scripts": {
"build": "npx projen build",
"bump": "npx projen bump",
"clobber": "npx projen clobber",
"compile": "npx projen compile",
"default": "npx projen default",
"eject": "npx projen eject",
"eslint": "npx projen eslint",
"package": "npx projen package",
"post-compile": "npx projen post-compile",
"post-upgrade": "npx projen post-upgrade",
"pre-compile": "npx projen pre-compile",
"prepare": "npx projen prepare",
"release": "npx projen release",
"test": "npx projen test",
"turbo:build": "npx projen turbo:build",
"turbo:compile": "npx projen turbo:compile",
"turbo:eslint": "npx projen turbo:eslint",
"turbo:test": "npx projen turbo:test",
"unbump": "npx projen unbump",
"upgrade": "npx projen upgrade",
"watch": "npx projen watch",
"projen": "npx projen",
"postinstall": "turbo run prepare"
},
"devDependencies": {
"@functionless/projen": "^0.2.0",
"@mountainpass/cool-bits-for-projen": "^0.2.4",
"@types/node": "^14",
"@typescript-eslint/eslint-plugin": "^5",
"@typescript-eslint/parser": "^5",
"eslint": "^8",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-import-resolver-typescript": "^3.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"json-schema": "^0.4.0",
"lint-staged": "^13.0.3",
"npm-check-updates": "^15",
"prettier": "^2.7.1",
"projen": "^0.61.34",
"projen-turborepo": "^0.0.63",
"standard-version": "^9",
"ts-node": "^10.9.1",
"turbo": "^1.4.3",
"typescript": "^4.8.2"
},
"main": "lib/index.js",
"license": "Apache-2.0",
"version": "0.0.0",
"types": "lib/index.d.ts",
"private": true,
"workspaces": [
"packages/eventBridge",
"packages/cron",
"packages/sagaFunction",
"packages/sample1"
],
"resolutions": {
"@types/responselike": "1.0.0",
"got": "12.3.1"
},
"lint-staged": {
"*.{tsx,jsx,ts,js,json,md}": [
"turbo run eslint -- --"
]
},
"//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"npx projen\"."
}