-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
42 lines (42 loc) · 1.49 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
{
"name": "root",
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap",
"clean": "lerna clean",
"build": "lerna run build",
"prepub": "lerna run build",
"pub": "lerna publish",
"format": "prettier --write packages/**/*.ts",
"format-check": "prettier --check packages/**/*.ts",
"test": "jest --testTimeout 10000",
"test:checkout": "jest --testTimeout 20000 packages/checkout",
"test:ding": "jest --testTimeout 10000 packages/ding-talk --watchAll",
"test:cdn-cache": "jest --testTimeout 10000 packages/cdn-cache --watchAll",
"test:cache": "jest --testTimeout 500000 packages/cache --watchAll",
"test:runtime-setup": "jest --testTimeout 500000 packages/runtime-setup --watchAll",
"test:s-setup": "jest --testTimeout 500000 packages/s-setup --watchAll",
"test:send-email": "jest --testTimeout 10000 packages/send-email --watchAll",
"test:npm-publish": "jest --testTimeout 50000 packages/npm-publish --watchAll",
"test:s-deploy": "jest --testTimeout 500000 packages/s-deploy --watchAll"
},
"workspaces": [
"packages/checkout",
"packages/s-setup",
"packages/runtime-setup",
"packages/s-deploy",
"packages/fc-canary",
"packages/s-release"
],
"devDependencies": {
"@serverless-cd/engine": "^0.0.35",
"@types/jest": "^28.1.6",
"dotenv": "^16.0.3",
"jest": "^28.1.3",
"lerna": "^5.5.0",
"prettier": "^2.7.1",
"sync-npm-mirror": "^1.0.0",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4"
}
}