-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.13 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
{
"name": "@acount/root",
"version": "1.0.0",
"private": true,
"main": "index.js",
"repository": "https://github.com/Hiswe/a-count.git",
"author": "Hiswe <hiswehalya@gmail.com>",
"license": "MIT",
"scripts": {
"start": "yarn build && yarn serve",
"build": "yarn wsrun --parallel --exclude-missing build",
"build:helpers": "yarn workspace @acount/helpers build",
"build:api:doc": "yarn workspace @acount/api build:api-doc",
"dev": "yarn wsrun --parallel --exclude-missing dev",
"dev:api": "yarn workspace @acount/api dev",
"dev:nuxt": "yarn workspace @acount/nuxt dev",
"release": "lerna publish --skip-npm --force-publish=* && yarn run release:git",
"release:git": "lerna run build --scope=web-app && parallelshell \"node bin/release-api.js\" \"node bin/release-webapp.js\"",
"serve": "yarn wsrun --parallel --exclude-missing serve",
"toc": "doctoc *.md --github"
},
"engines": {
"node": ">=8.0.0",
"yarn": ">=1.10.1"
},
"workspaces": [
"acount-*"
],
"dependencies": {},
"devDependencies": {
"doctoc": "^1.4.0",
"npm-run-all": "^4.1.5",
"wsrun": "^3.4.0"
}
}