-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
62 lines (62 loc) · 1.99 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
{
"name": "@ringcentral/web-apps",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"clean": "yarn clean:packages && yarn clean:cache && yarn clean:self",
"clean:packages": "lerna clean --yes",
"clean:cache": "lerna exec -- rm -rf dist lib .cache false",
"clean:self": "rm -rf node_modules",
"test": "PORT=3000 start-server-and-test serve http://localhost:3000 cypress:run",
"test:quick": "echo Not implemented yet...",
"test:coverage": "echo Not implemented yet...",
"build": "SKIP_PREFLIGHT_CHECK=true NODE_ENV=production dotenv lerna run build -- --stream",
"build:quick": "yarn build --scope=@ringcentral/*",
"start": "yarn build:quick && yarn start:quick",
"start:quick": "dotenv lerna run start -- --parallel",
"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": "yarn lint './*(demo|packages)/*/src/**/*.{jsx,js,tsx,ts}'",
"lint:staged": "lint-staged",
"serve": "serve -l $PORT",
"cypress": "cypress open",
"cypress:run": "cypress run",
"vercel": "vercel"
},
"author": "",
"license": "ISC",
"devDependencies": {
"cypress": "4.8.0",
"cypress-iframe": "1.0.1",
"dotenv-cli": "2.0.1",
"eslint": "5.16.0",
"eslint-config-ringcentral-typescript": "1.0.0",
"husky": "3.0.0",
"lerna": "3.15.0",
"lint-staged": "9.2.0",
"serve": "11.3.2",
"start-server-and-test": "1.11.0",
"typescript": "3.8.3",
"vercel": "19.1.0"
},
"workspaces": {
"packages": [
"demo/*",
"packages/*"
],
"nohoist": [
"**/webpack",
"**/webpack/**",
"**/webpack-cli",
"**/webpack-cli/**",
"**/webpack-dev-server",
"**/webpack-dev-server/**",
"**/enhanced-resolve",
"**/enhanced-resolve/**"
]
},
"resolutions": {
"**/@babel/helper-compilation-targets": "7.10.2"
}
}