-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
35 lines (35 loc) · 1.31 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
{
"name": "liff-inspector",
"workspaces": [
"packages/headless-inspector-core",
"packages/headless-inspector-cdp",
"packages/headless-inspector",
"packages/liff-inspector"
],
"scripts": {
"build": "npm run clean -ws && npm run build -ws",
"start:hi": "npm run build && npm run serve -w @line/headless-inspector",
"start:hi:https": "npm run build && npm run serve -w @line/headless-inspector -- --https",
"start:li": "npm run build && npm run serve -w @line/liff-inspector",
"start:li:https": "npm run build && npm run serve -w @line/liff-inspector -- --key=../../localhost-key.pem --cert=../../localhost.pem",
"lint": "npm run lint -ws",
"test": "jest",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"test:watch": "npm run test -- --watch",
"code-check": "npm run lint && npm run build && npm run test",
"publish": "npm run code-check && npm run build && npm publish -ws --access public"
},
"devDependencies": {
"@types/jest": "27.4.1",
"@typescript-eslint/eslint-plugin": "5.19.0",
"@typescript-eslint/parser": "5.19.0",
"eslint": "8.13.0",
"eslint-config-prettier": "8.5.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"prettier": "2.6.2",
"ts-jest": "29.2.5",
"typescript": "4.6.3"
}
}