-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
43 lines (43 loc) · 1.39 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
{
"name": "util-monorepo",
"version": "1.0.1",
"description": "```shell\r npm install pnpm -g\r # 然后创造一个 新文件夹,在这个新文件夹中\r pnpm init\r ```",
"main": "index.js",
"repository": {
"url": "https://github.com/electroluxcode/util-monorepo"
},
"jest-stare": {
"resultDir": "results/jest-stare",
"reportTitle": "测试报告"
},
"scripts": {
"dev:html": "cd packages/ProjectValiate/pv-html && npm run dev",
"test": "jest --reporters default jest-stare",
"start": "concurrently \"npm run dev:es \" \"npm run dev:cjs\" ",
"dev:compile": "concurrently \"npm run dev:es \" \"npm run dev:cjs\" ",
"dev:es": "tsc --p ./tsconfig.esm.json --watch ",
"dev:cjs": "tsc --p ./tsconfig.common.json --watch ",
"build:typescript": "tsc --outDir ./dist --project ./ --watch",
"build:webpack": "node ./config/webpack.build.js",
"build:track": "node ./config/track.prod.build.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.6.0",
"jest-environment-jsdom": "^29.7.0",
"node-schedule": "^2.1.1",
"ts-loader": "8.4",
"webpack": "^5.89.0"
},
"devDependencies": {
"@types/node": "^20.9.2",
"@vitejs/plugin-vue": "^5.0.4",
"babel-jest": "^29.7.0",
"concurrently": "^8.2.2",
"jest": "^29.7.0",
"jest-stare": "^2.5.1",
"typescript": "^5.2.2",
"vite": "^5.1.6"
}
}