-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 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
{
"name": "@corbado/javascript",
"private": true,
"workspaces": [
"packages/*",
"playground/*"
],
"scripts": {
"build": "lerna run build",
"build:dev": "lerna run build:dev",
"build:bundler": "lerna run build:bundler",
"build:bundler:local": "lerna run build:bundler:local",
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix",
"prettier:check": "prettier --check .",
"format": "prettier --write .",
"release:build": "lerna run build --scope \"@corbado/*\" --skip-nx-cache && lerna run build:bundler --scope \"@corbado/*\" --skip-nx-cache",
"release:version": "lerna version --no-push --yes --no-private",
"release:publish": "lerna publish from-package --no-private",
"release": "npm run release:version && npm run release:build && npm run release:publish",
"release:connect-web-js": "scripts/release_connect_web_js.sh",
"test:e2e:local": "ts-node-esm ./scripts/e2eTests.ts",
"test:e2e:sdk": "lerna run e2e:sdk",
"test:e2e:ui": "lerna run e2e:ui",
"test:e2e:report": "lerna run e2e:report"
},
"devDependencies": {
"@types/node": "^20.8.7",
"@typescript-eslint/eslint-plugin": "5.58.0",
"@typescript-eslint/parser": "5.58.0",
"cross-env": "^7.0.3",
"esbuild": "^0.19.11",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-simple-import-sort": "10.0.0",
"lerna": "^8.1.8",
"node-fetch": "^3.3.2",
"pm2": "^5.3.0",
"prettier": "^3.1.0",
"rimraf": "^5.0.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.2.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.10.0"
}
}