-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.01 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
{
"name": "paying",
"private": true,
"license": "MIT",
"author": "Chengdu Enverse Co., Ltd.",
"scripts": {
"build": "rimraf packages/*/{.bld-cache,bld} && tsc --build",
"watch": "yarn build --watch",
"lint": "run-in-every eslint-project --parallel --echo -- eslint --config {configFileName} .",
"lint-prettier": "prettier --check .",
"test": "yarn lint-prettier && yarn build && yarn lint && yarn jest",
"jest": "yarn core jest",
"core": "yarn workspace @paying/core"
},
"workspaces": [
"packages/core",
"packages/alipay",
"packages/wechat",
"packages/apple",
"packages/demo"
],
"devDependencies": {
"@types/node": "^17.0.31",
"@types/jest": "^27.5.0",
"tslang": "^0.1.26",
"black-object": "^0.0.1-3",
"jest": "^28.1.0",
"ts-jest": "^28.0.1",
"@mufan/code": "0.2.13",
"@mufan/eslint-plugin": "^0.1.68",
"eslint": "^8.16.0",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"run-in-every": "^0.2.0",
"typescript": "~4.6.4"
}
}