This repository was archived by the owner on Jan 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.04 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.04 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"private": true,
"workspaces": [
"packages/*",
"vendors/*"
],
"repository": {
"type": "git",
"url": "https://github.com/Laixer/FunderMapsFrontend-Mono"
},
"author": "https://github.com/Laixer",
"bugs": {
"url": "https://github.com/Laixer/FunderMapsFrontend-Mono/issues",
"email": "info@laixer.com"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"serve": "concurrently --kill-others --success first \"yarn serve:clientapp\" \"yarn serve:customerportal\" \"yarn serve:incidentportal\"",
"serve:clientapp": "lerna exec yarn serve --scope=@fundermaps/clientapp --",
"serve:customerportal": "lerna exec yarn serve --scope=@fundermaps/customerportal --",
"serve:incidentportal": "lerna exec yarn serve --scope=@fundermaps/incidentportal --",
"build": "lerna run build --",
"build:clientapp": "lerna exec yarn build --scope=@fundermaps/clientapp --",
"build:customerportal": "lerna exec yarn build --scope=@fundermaps/customerportal --",
"build:incidentportal": "lerna exec yarn build --scope=@fundermaps/incidentportal --",
"publish": "lerna publish"
},
"dependencies": {
"@fundermaps/common": "0.1.0",
"@fundermaps/vendor": "0.0.0",
"mapbox-gl": "^2.4.1",
"vue-router": "^4.0.0-0",
"vuex": "^4.0.0-0"
},
"devDependencies": {
"@types/mapbox-gl": "^2.0.2",
"@types/node": "^14.14.16",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^5.0.2",
"concurrently": "^5.3.0",
"copy-webpack-plugin": "^6.3.2",
"dotenv": "^10.0.0",
"eslint": "^7.16.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-vue": "^7.0.0-0",
"html-loader": "^1.3.2",
"lerna": "^3.22.1",
"prettier": "^1.19.1",
"sass": "^1.39.0",
"sass-loader": "^10.1.0",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"typescript": "~3.9.3",
"vuejs-datepicker": "^1.6.2",
"vuex-module-decorators": "^1.0.1",
"yargs": "^17.1.1"
}
}