-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 908 Bytes
/
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
{
"name": "lerna-monorepo-vuejs-nuxtjs",
"version": "1.0.0",
"description": "boilerplate for a lerna monorepo with vuejs and nuxtjs ",
"main": "index.js",
"scripts": {
"postinstall": "lerna bootstrap",
"build-all": "cd ./apps/app1 && npm run build && cd ./apps/app2 && npm run build",
"build-package": "cd ./apps/shared && npm run build",
"publish-package": "cd ./apps/shared && npm publish",
"app1": "cd ./apps/app1 && npm run dev",
"app2": "cd ./apps/app2 && npm run serve",
"test": "lerna exec -- npm run test",
"lint": "lerna exec -- npm run lint"
},
"author": "mostafa-rahmani",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.16.12",
"@babel/preset-env": "^7.16.11",
"lerna": "^4.0.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^8.6.0",
"eslint-plugin-vue": "^8.2.0",
"jest": "^27.4.7"
}
}