-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
58 lines (58 loc) · 1.82 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "root",
"private": true,
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "./check-signature.sh"
}
},
"lint-staged": {
"**/*.js": [
"eslint --fix",
"git add"
]
},
"workspaces": [
"packages/*"
],
"scripts": {
"prepare": "lerna bootstrap --ci",
"build": "lerna run build",
"build:sdk": "lerna run build:watch --scope '@millicast/sdk' --parallel",
"start:projects": "lerna run start --scope 'millicast-publisher-demo' --scope 'millicast-viewer-demo' --parallel",
"delay": "node -e \"setTimeout(() => {}, 3000)\"",
"start": "concurrently \"npm run build:sdk\" \"npm run delay && npm run start:projects\"",
"start-all:projects": "lerna run start --parallel",
"start-all": "concurrently \"npm run build:sdk\" \"npm run delay && npm run start-all:projects\"",
"test": "lerna run test --stream",
"test-e2e": "lerna run test-e2e --stream",
"build-docs": "lerna run build-docs",
"start-docs": "lerna run start-docs --stream",
"publish": "lerna publish from-git",
"lint-fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@lerna/publish": "^5.5.0",
"babel-eslint": "^10.1.0",
"concurrently": "^8.2.2",
"eslint": "^7.21.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-flowtype": "^5.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.2.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^5.0.0",
"husky": "^4.3.8",
"install": "^0.13.0",
"lerna": "^5.5.0",
"lint-staged": "^10.5.4",
"netlify-cli": "^17.15.6",
"npm": "^8.11.0",
"vite": "^5.2.10"
}
}