This repository has been archived by the owner on Jan 6, 2025. It is now read-only.
forked from GreenTechSee/GreenTaxi
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 3.31 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "greentaxi-2024",
"version": "0.0.1",
"description": "Team GreenTaxi's entry for GreenTechSee 2024",
"private": true,
"scripts": {
"dev": "npm run pre-dev && concurrently \"vite\" \"npm run dev:watcher\"",
"pre-dev": "npm run copy-font-awesome",
"dev:watcher": "nodemon --watch Web/wwwroot -e vue,js,jsx,cjs,mjs,ts,tsx,cts,mts -x \"npm run lint-and-type-check-and-test\"",
"lint-and-type-check-and-test": "concurrently \"npm run lint\" \"npm run type-check\" \"npm run test\"",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
"type-check": "vue-tsc --build --force",
"build": "npm run copy-font-awesome && npm run lint && npm audit && npm run audit-dotnet && run-p type-check \"build-only {@}\" --",
"audit-dotnet": "run-script-os",
"audit-dotnet:win32": "powershell.exe -Command \"$commandOutput = dotnet list package --vulnerable --include-transitive; if ($commandOutput.Contains('Severity') -or $commandOutput.Contains('severity')) { dotnet list package --vulnerable --include-transitive; exit 1 } else { exit 0 }\"",
"audit-dotnet:nix": "#!/bin/bash\n\ncommandOutput=$(dotnet list package --vulnerable) && { echo \"$commandOutput\" | grep -E 'Severity|severity' && dotnet list package --vulnerable --include-transitive; } && exit 1 || exit 0\n",
"test": "vitest run",
"test:watch": "vitest",
"build-only": "vite build",
"copy-font-awesome": "run-script-os",
"copy-font-awesome:win32": "robocopy /MIR /njh /njs /ndl /nc /ns .\\node_modules\\@fortawesome\\fontawesome-pro .\\Web\\wwwroot\\libs\\font-awesome /XD *\"sprites\" *\"svgs\" || echo .",
"copy-font-awesome:nix": "mkdir -p ./Web/wwwroot/libs/font-awesome/ && rsync -a --exclude=*\"sprites\" --exclude=*\"svgs\" ./node_modules/@fortawesome/fontawesome-pro/ ./Web/wwwroot/libs/font-awesome/ || echo ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kristiansund-kommune/GreenTechSee-Team-GreenTaxi-2024.git"
},
"author": "Kristiansund kommune - Avdeling for utvikling og digital innovasjon",
"license": "MIT",
"bugs": {
"url": "https://github.com/Kristiansund-kommune/GreenTechSee-Team-GreenTaxi-2024/issues"
},
"homepage": "https://github.com/Kristiansund-kommune/GreenTechSee-Team-GreenTaxi-2024#readme",
"dependencies": {
"@fortawesome/fontawesome-pro": "^6.5.1",
"@popperjs/core": "^2.11.8",
"azure-maps-control": "^3.1.2",
"bluebird": "^3.7.2",
"bootstrap": "^5.3.3",
"chart.js": "^4.4.2",
"core-js": "^3.36.0",
"floating-vue": "^5.2.2",
"jquery": "^3.7.1",
"lodash-es": "^4.17.21",
"moment": "^2.30.1",
"vue": "^3.4.21",
"vue-router": "^4.3.0"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.7.2",
"@tsconfig/node20": "^20.1.2",
"@types/bootstrap": "^5.2.10",
"@types/jquery": "^3.5.29",
"@types/jsdom": "^21.1.6",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.11.25",
"@vitejs/plugin-vue": "^5.0.4",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/test-utils": "^2.4.4",
"@vue/tsconfig": "^0.5.1",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.22.0",
"jsdom": "^24.0.0",
"less": "^4.2.0",
"nodemon": "^3.1.0",
"npm-run-all2": "^6.1.2",
"run-script-os": "^1.1.6",
"sass": "^1.71.1",
"typescript": "^5.4.2",
"vite": "^5.1.5",
"vitest": "^1.3.1",
"vue-tsc": "^2.0.6",
"whatwg-fetch": "^3.6.20"
}
}