-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 1.63 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
{
"name": "youtube-lite",
"version": "2.0.0-alpha",
"description": "\"Youtube that doesn't scale\"",
"main": "index.js",
"repository": "https://github.com/9oelM/youtube-lite.git",
"author": "9oelM <hj923@hotmail.com>",
"license": "MIT",
"private": false,
"scripts": {
"bootstrap": "lerna bootstrap",
"lint": "eslint . --debug",
"lint:fix": "eslint . --fix",
"lint:ts": "lerna run --scope @youtube-lite/app lint:ts --stream",
"app:localdev": "lerna run --scope @youtube-lite/app build:localdev --stream",
"app:deploydev": "lerna run --scope @youtube-lite/app build:deploydev --stream",
"app:prod": "rm -rf ./packages/app/dist && lerna run --scope @youtube-lite/app build:prod --stream",
"app:build-storybook": "lerna run --scope @youtube-lite/app build-storybook --stream",
"app:storybook": "lerna run --scope @youtube-lite/app storybook --stream",
"app:prod:deploy": "echo 'youtube-lite.js.org' > ./packages/app/dist/CNAME && gh-pages -d ./packages/app/dist",
"test": "lerna run --scope @youtube-lite/app test --stream"
},
"devDependencies": {
"@types/enzyme-adapter-react-16": "1.0.6",
"@typescript-eslint/eslint-plugin": "4.28.3",
"@typescript-eslint/parser": "4.28.3",
"enzyme-adapter-react-16": "1.15.6",
"eslint": "7.30.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.24.0",
"eslint-plugin-react-hooks": "4.2.0",
"lerna": "4.0.0",
"prettier": "2.3.2",
"typescript": "^4.5.4"
},
"engines": {
"node": ">=14",
"npm": ">=7.15.0"
},
"dependencies": {
"gh-pages": "^4.0.0"
}
}