This repository was archived by the owner on May 5, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.48 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.48 KB
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
{
"name": "cloudbase-js-sdk",
"version": "0.1.0",
"private": true,
"scripts": {
"install-deps": "lerna bootstrap",
"build": "BUILD_SRC='wrapper' lerna run --scope @cloudbase/* build",
"build:cdn": "BUILD_SRC='wrapper' lerna run --scope @cloudbase/* build:cdn",
"build:e2e": "BUILD_SRC='wrapper' lerna run --scope @cloudbase/* build:e2e",
"lint": "lerna run --scope @cloudbase/* lint",
"test": "jest --verbose false -i",
"test:e2e": "npm run build:e2e&&jest --config=\"./jest.e2e.config.js\" --verbose false -i \"e2e\"",
"test:web": "webpack-dev-server --config webpack.test-web.js",
"publish": "npm run lint && lerna publish",
"publish:beta": "lerna publish --dist-tag beta"
},
"publishConfig": {
"access": "public"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-typescript": "^7.9.0",
"@cloudbase/database": "0.9.18-next",
"axios": "^0.19.2",
"babel-loader": "^8.1.0",
"core-js": "^3.6.5",
"express": "^4.17.1",
"jest": "^26.0.1",
"jest-puppeteer": "^4.4.0",
"lerna": "^3.20.2",
"power-assert": "^1.6.1",
"puppeteer": "1.20.0",
"rimraf": "^3.0.2",
"serve-static": "^1.14.1",
"ts-jest": "^26.1.4",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
}
}