-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 936 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
{
"name": "ts-monorepo",
"version": "0.0.2",
"description": "Template for setting up a TypeScript monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"docs": "doctoc --title '**Table of content**' README.md",
"clean": "pnpm run -r clean",
"build": "pnpm run -r build",
"test": "jest --testTimeout 10000",
"test:pop": "jest --testTimeout 120000 packages/srm-aliyun-pop-core/**/index.test.ts --watchAll",
"test:fc": "jest --testTimeout 10000 packages/srm-aliyun-fc2 --watchAll",
"lint": "eslint --ext js,ts,tsx ."
},
"devDependencies": {
"@nighttrax/eslint-config-tsx": "~11.0.0",
"@types/jest": "~29.2.5",
"@types/node": "~18.11.18",
"doctoc": "~2.2.1",
"dotenv": "^16.0.3",
"eslint": "~8.30.0",
"eslint-plugin-import": "~2.26.0",
"jest": "~29.3.1",
"ts-jest": "~29.0.3",
"ts-node": "~10.9.1",
"typescript": "~4.9.4"
}
}