-
Notifications
You must be signed in to change notification settings - Fork 122
/
package.json
39 lines (39 loc) · 1.25 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
{
"name": "samples-typescript",
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap --npm-client=yarn --ignore=monorepo-folders --ignore=nestjs-exchange-rates --ignore=food-delivery",
"build": "lerna run build --ignore=monorepo-folders --ignore=nestjs-exchange-rates --ignore=food-delivery",
"test": "lerna run --stream test",
"format": "prettier --write .",
"copy-shared-files": "zx .scripts/copy-shared-files.mjs",
"lint": "lerna run lint",
"prepare": "husky install",
"update-toc": "doctoc README.md"
},
"devDependencies": {
"@temporalio/client": "^1.11.3",
"@tsconfig/node16": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"doctoc": "^2.1.0",
"eslint": "^7.32.0",
"eslint-config-next": "^12.0.3",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-deprecation": "^1.2.1",
"eslint-plugin-prettier": "^4.2.1",
"glob": "^9.3.4",
"husky": "^7.0.2",
"lerna": "^6.1.0",
"lint-staged": "^11.2.3",
"next": "^12.0.0",
"prettier": "^2.8.8",
"typescript": "^4.4.3",
"yaml": "^2.2.1",
"zx": "^6.0.7"
},
"lint-staged": {
"*.{js,ts,json,md}": "prettier --write",
"*.{js,ts}": "eslint --fix --cache"
}
}