-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
54 lines (54 loc) · 1.67 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
{
"name": "@ringcentral/mono",
"version": "5.0.0",
"scripts": {
"clean": "lerna run clean && lerna clean --yes && rm -rf node_modules",
"start": "npm run build && npm run start:quick",
"start:quick": "dotenv lerna run start -- --parallel",
"build": "lerna run build --concurrency=1 --stream",
"test": "lerna run test --concurrency=1 --stream",
"test:browser": "lerna run jest:browser --concurrency=1 --stream",
"test:coverage": "lerna run test:coverage --concurrency=1 --stream",
"publish:release": "lerna publish --tag-version-prefix=\"\" --force-publish=* --no-push --no-git-tag-version",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint --fix",
"lint:all": "npm run lint './*/src/**/*.ts*'",
"lint:staged": "lint-staged",
"docs": "typedoc --out docs ./sdk/src ./react/src ./redux/src ./subscriptions/src"
},
"workspaces": [
"api-test",
"demo",
"react",
"react-demo",
"redux",
"redux-demo",
"sdk",
"subscriptions",
"subscriptions-deprecated",
"utils"
],
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/ringcentral/ringcentral-js.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ringcentral/ringcentral-js/issues"
},
"homepage": "https://github.com/ringcentral/ringcentral-js#readme",
"dependencies": {
"coveralls": "^3.1.1",
"dotenv-cli": "^1.4.0",
"eslint": "^8.52.0",
"eslint-config-ringcentral-typescript": "^7.0.3",
"husky": "^1.1.3",
"lerna": "^6.6.2",
"lint-staged": "^12.5.0",
"typescript": "^4.8.4"
},
"devDependencies": {
"typedoc": "0.25.13"
}
}