-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.44 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
{
"name": "async-promise-batch-mono-repo",
"version": "1.0.0",
"description": "A monorepo for async-promise-batch and demo",
"author": "Milosz Sobczak <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.4",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"concurrently": "^8.2.1",
"eslint": "^8.48.0",
"jest": "^29.6.4",
"prettier": "3.0.3",
"prettier-plugin-sort-imports": "^1.7.2",
"process": "^0.11.10",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"scripts": {
"start:dev": "concurrently \"npm run start:dev --workspace=\"async-promise-batch\" --if-present\" \"npm run start:dev --workspace=\"async-promise-batch-demo\" --if-present\"",
"build": "npm run build --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"prettier": "npm run prettier --workspaces --if-present",
"prettier:fix": "npm run prettier:fix --workspaces --if-present",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run prettier && npm run lint"
},
"engines": {
"node": ">=18.17.1"
},
"workspaces": [
"packages/async-promise-batch",
"packages/demo"
],
"dependencies": {
"debug": "^2.6.3"
}
}