-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.79 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
{
"name": "lite-embed-project",
"version": "0.0.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"coverage": "turbo run coverage",
"test": "turbo run test",
"build": "turbo run build",
"lerna": "lerna",
"prepublishOnly": "turbo run prepublish",
"publish:canary": "git checkout canary && git pull && lerna version prerelease --preid canary --force-publish",
"publish:canary:major": "git checkout canary && git pull && lerna version premajor --preid canary --force-publish",
"publish:canary:minor": "git checkout canary && git pull && lerna version preminor --preid canary --force-publish",
"publish:canary:patch": "git checkout canary && git pull && lerna version prepatch --preid canary --force-publish",
"publish:stable": "lerna version --force-publish",
"clean": "lerna clean -y && lerna bootstrap && lerna exec 'rm -rf ./dist'",
"lint": "turbo run lint",
"format": "turbo run format"
},
"devDependencies": {
"@esbuild-plugins/node-globals-polyfill": "^0.1.1",
"@lerna-lite/cli": "^1.4.0",
"@lerna-lite/run": "^1.4.0",
"@testing-library/jest-dom": "^5.16.4",
"@types/node": "^17.0.38",
"@types/vimeo__player": "^2.16.3",
"@types/ws": "^8.5.3",
"@types/youtube-player": "^5.5.6",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"c8": "^7.11.3",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"isomorphic-fetch": "^3.0.0",
"jsdom": "^19.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"rollup-plugin-node-polyfills": "^0.2.1",
"tsc-alias": "^1.6.7",
"turbo": "^1.2.14",
"typescript": "^4.7.2",
"vite": "^2.9.9",
"vite-tsconfig-paths": "^3.5.0",
"vitest": "^0.13.1"
}
}