-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 978 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
30
31
{
"name": "weather-scheduler",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --ext .js,.ts,.vue --fix --ignore-path .gitignore apps/be apps/fe packages/shared-lib",
"build:all": "npm --prefix ./packages/shared-lib run build && npm --prefix ./apps/be run build && npm --prefix ./apps/fe run build",
"build:shared-lib": "npm --prefix ./packages/shared-lib run build",
"build:apps/be": "npm --prefix ./apps/be run build",
"build:apps/fe": "npm --prefix ./apps/fe run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"workspaces": [
"apps/be",
"apps/fe",
"packages/shared-lib"
],
"devDependencies": {
"@vue/eslint-config-typescript": "^12.0.0",
"eslint": "^8.52.0",
"eslint-plugin-import": "^2.29.0"
},
"dependencies": {
"eslint-plugin-jsdoc": "^46.8.2",
"eslint-plugin-vue": "^9.18.0"
}
}