forked from temporalio/samples-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1017 Bytes
/
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
{
"name": "samples-typescript",
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap --npm-client=yarn",
"build": "lerna run build",
"test": "lerna run test",
"format": "prettier --write .",
"copy-shared-files": "zx .scripts/copy-shared-files.mjs",
"lint": "lerna run lint",
"prepare": "husky install"
},
"devDependencies": {
"@temporalio/client": "^0.13.0",
"@tsconfig/node16": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"eslint": "^7.32.0",
"eslint-config-next": "^12.0.3",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-deprecation": "^1.2.1",
"husky": "^7.0.2",
"lint-staged": "^11.2.3",
"next": "^12.0.0",
"prettier": "^2.3.2",
"typescript": "^4.4.3",
"zx": "^6.0.7"
},
"lint-staged": {
"*.{js,ts,json,md}": "prettier --write",
"*.{js,ts}": "eslint --fix --cache"
},
"dependencies": {
"doctoc": "^2.1.0",
"lerna": "^4.0.0"
}
}