-
Notifications
You must be signed in to change notification settings - Fork 415
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.5 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.5 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
47
{
"name": "steedos-platform",
"private": true,
"workspaces": [
"packages/*",
"services/*",
"ee/*",
"builder6/*"
],
"scripts": {
"clean": "lerna clean",
"start": "cd builder6/server && yarn start",
"webapp": "cd builder6/webapp && yarn dev",
"build": "lerna run build",
"docker": "docker-compose up",
"docker:db": "docker-compose up mongodb mongodb-init redis nats",
"i18n": "lerna run i18n",
"repl": "moleculer-runner --config steedos.config.js --repl",
"sync": "lerna exec --no-private -- cnpm sync \\$LERNA_PACKAGE_NAME",
"release:beta": "yarn lerna publish --force-publish --exact --dist-tag beta --registry https://registry.npmjs.org",
"release:again": "lerna publish from-package --registry https://registry.npmjs.org",
"depcheck:services": "depcheck services/* --json > depcheck-services-result.json",
"depcheck:packages": "depcheck packages/* --json > depcheck-packages-result.json"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@commitlint/cli": "^20.2.0",
"@commitlint/config-angular": "^20.2.0",
"@eslint/js": "^9.22.0",
"@types/node": "^18.0.3",
"cnpm": "^9.0.1",
"concurrently": "^8.2.1",
"depcheck": "^1.4.7",
"eslint": "^9.22.0",
"globals": "^16.0.0",
"lerna": "^9.0.3",
"nodemon": "^3.1.11",
"rimraf": "^6.0.1",
"tslib": "^2.4.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.26.1"
},
"engines": {
"node": ">=22.0.0"
},
"packageManager": "[email protected]"
}