-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
21 lines (21 loc) · 1.09 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"license": "BSD 3-Clause License",
"scripts": {
"deploy": "yarn deploy",
"dev:vue-ts": "cd examples/vue-ts && rm node_modules -fr; yarn; yarn dev;",
"clear": " rm -fr node_modules; rm -fr telos-cloud/lib; rm -fr telos-cloud/styles; rm -fr telos-cloud/node_modules; rm -fr examples/*/node_modules; rm -fr examples/*/dist; rm -fr examples/*/build",
"build-telos-cloud": "cd telos-cloud && yarn build",
"dev": "nodemon --watch telos-cloud/src --ext ts,js,json --exec \"yarn build-telos-cloud && yarn dev:vue-ts\"",
"postinstall": "yarn install-telos-cloud && yarn install-examples",
"install-telos-cloud": "cd telos-cloud && yarn",
"install-vue-ts": "cd examples/vue-ts && yarn",
"install-demo": "cd examples/demo && yarn",
"build-demo": "cd examples/demo && yarn && yarn build",
"install-examples": "yarn install-vue-ts && yarn install-demo",
"publish-on-npm": "cd telos-cloud && yarn build && npm publish"
},
"devDependencies": {
"concurrently": "^6.0.0",
"nodemon": "^2.0.0"
}
}