-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
105 lines (105 loc) · 3.28 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "rtv",
"description": "Remote TV control for developers",
"repository": {
"type": "git",
"url": "[email protected]:yandex/rtv.git"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"code": "eslint packages",
"test": "lerna run build && lerna exec -- npm run test",
"e2e": "lerna exec --scope rtv-server npm run test:api",
"start": "lerna run start --scope=rtv-server --stream",
"release": "lerna version $VER --no-git-tag-version --yes",
"release-patch": "VER=patch npm run release",
"release-minor": "VER=minor npm run release",
"release-next": "VER=prerelease npm run release",
"publish": "lerna publish from-package --yes",
"publish-next": "lerna publish from-package --dist-tag next",
"docs": "lerna run docs",
"dev": "lerna run dev --stream --parallel",
"docker:build": "docker-compose build",
"docker:up": "docker-compose up -d",
"docker:test": "docker run --rm -t rtv npm test",
"docker:push": "docker-compose push"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "run-s code test"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --fix"
},
"devDependencies": {
"@rollup/plugin-alias": "^3.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-typescript": "^8.3.0",
"@types/archiver": "^3.0.0",
"@types/await-timeout": "^0.3.1",
"@types/chai": "^4.3.0",
"@types/chai-string": "^1.4.2",
"@types/cookie": "^0.4.1",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/fs-extra": "^9.0.13",
"@types/http-proxy": "^1.17.7",
"@types/isomorphic-fetch": "^0.0.35",
"@types/lodash": "^4.14.177",
"@types/lowdb": "^1.0.11",
"@types/mocha": "^5.2.7",
"@types/mock-require": "^2.0.1",
"@types/ms": "^0.7.31",
"@types/multer": "^1.4.7",
"@types/node": "^16.11.9",
"@types/node-fetch": "^2.5.12",
"@types/ping": "^0.4.1",
"@types/semver": "^7.3.9",
"@types/sinon": "5.0.0",
"@types/unzipper": "^0.10.4",
"@types/uuid": "^8.3.3",
"@types/ws": "^8.2.1",
"@types/xml2js": "^0.4.9",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"assert-rejects": "^1.0.0",
"chai": "^4.2.0",
"chai-string": "^1.5.0",
"chnl": "^0.4.0",
"css-loader": "^0.28.8",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-mocha": "^5.2.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"husky": "^1.0.1",
"lerna": "^4.0.0",
"lint-staged": "^12.3.3",
"lodash": "^4.17.4",
"mocha": "^6.2.3",
"mock-require": "^3.0.3",
"mock-socket": "^9.0.8",
"nock": "^13.2.1",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.3",
"nyc": "^13.0.1",
"prettier": "^2.5.0",
"rimraf": "^2.6.2",
"rollup": "^2.60.1",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-replace": "^2.2.0",
"sinon": "^6.3.4",
"ts-node": "^10.4.0",
"tslib": "^2.3.1",
"typescript": "^4.5.2"
},
"license": "MIT"
}