-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.33 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
{
"name": "organic-stem-devshell",
"version": "3.15.0",
"description": "",
"bin": {
"devshell": "./bin/devshell.js",
"ddevshell": "./bin/ddevshell.js"
},
"scripts": {
"develop": "npx lerna run develop --stream",
"build": "npx lerna run build --stream",
"postinstall": "npx lerna bootstrap --scope=server",
"setup": "npx lerna bootstrap",
"pack": "npm run build && git add --all ./ && git commit -m 'release build'",
"re-install-modules": "rm -rf package-lock.json && rm -rf ./node_modules && npm i",
"release-patch": "npm run pack && npm version patch && git push --tags && git push origin master",
"release-minor": "npm run pack && npm version minor && git push --tags && git push origin master",
"release-major": "npm run pack && npm version major && git push --tags && git push origin master"
},
"author": "Boris Filipov",
"engines": {
"node": ">= 10"
},
"license": "MIT",
"dependencies": {
"angelabilities-package-scripts": "^2.0.1",
"angelscripts-help": "^1.0.1",
"angelscripts-monorepo-cells": "^5.0.0",
"angelscripts-monorepo-packages": "^1.0.0",
"opn": "^6.0.0",
"organic-angel": "^0.5.3",
"organic-plasma-socketio-channel": "^2.0.1"
},
"devDependencies": {
"eslint": "^7.0.0",
"eslint-config-standard": "^16.0.3",
"lerna": "^4.0.0"
}
}