-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.9 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
{
"name": "monolib",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run tsc",
"check": "npm-run-all build lint test",
"fix": "yarn fix:js && yarn fix:formatting",
"fix:formatting": "prettier --write .",
"fix:js": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"lernaPublish": "lerna publish",
"lint": "run-p lint:formatting lint:js && yarn lint:ts",
"lint:formatting": "prettier --check .",
"lint:js": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:ts": "lerna run tsc",
"new": "ts-fly new.ts",
"pub": "npm-run-all build test lernaPublish",
"test": "node -r @transloadit/ts-fly --test packages/**/*.test.ts",
"test:watch": "node -r @transloadit/ts-fly --test --watch packages/**/*.test.ts"
},
"dependencies": {
"execa": "5.1.1",
"inflection": "3.0.0",
"inquirer": "8.2.6",
"replace": "1.2.2"
},
"devDependencies": {
"@transloadit/ts-fly": "^0.1.5",
"@types/node": "^20.12.6",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-transloadit": "^3.0.0-0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-import": "^0.0.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-transloadit": "^0.2.0",
"fakefile": "1.1.0",
"lerna": "^8.1.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"prettier-plugin-packagejson": "^2.4.14",
"typescript": "^5.4.4"
},
"packageManager": "[email protected]+sha224.ff43de12787fdac66109108198934436dae6874cf2b98a51697ca494",
"engines": {
"node": ">= 18",
"yarn": "4.2.1"
}
}