-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 3.16 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 3.16 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
60
61
62
63
64
65
66
67
68
69
70
{
"name": "bcap",
"license": "AGPL-3.0-only",
"version": "2.0.0",
"scripts": {
"build_development": "npm i typescript@5.6.2 && npm run eslint:check && cross-env webpack --config ./webpack/webpack.config.dev.js",
"build_production": "npm run eslint:check && npm run ts:check && cross-env NODE_ENV=production webpack --config ./webpack/webpack.config.prod.js",
"build_test": "npm run eslint:check && npm run ts:check && cross-env webpack --config ./webpack/webpack.config.dev.js --env test=true",
"eslint:check": "eslint **/src/bcap",
"eslint:fix": "eslint --fix",
"eslint:fix:all": "npm run eslint:fix **/src",
"eslint:watch": "nodemon --watch . --ext ts,vue --exec npm run --silent eslint:check",
"gettext:extract": "vue-gettext-extract",
"gettext:compile": "vue-gettext-compile",
"prettier:check": "prettier --check **/src",
"prettier:fix": "prettier --write",
"prettier:fix:all": "npm run prettier:fix --single-quote **/src **/pkg/graphs",
"ts:check": "vue-tsc --noEmit",
"ts:watch": "vue-tsc --watch --noEmit",
"start": "cross-env webpack serve --config ./webpack/webpack.config.dev.js",
"vite_dev": "DEBUG=vite:* vite --host --force",
"vite_build": "DEBUG=vite:* vite build",
"vitest": "vitest --run --coverage",
"coverage": "vitest --run --coverage && node scripts/frontend_coverage.mjs",
"coverage:report": "node scripts/frontend_coverage.mjs",
"openapi:zod": "openapi-ts",
"api:gen": "./scripts/generate_api_contract.sh"
},
"overrides": {
"moment-timezone": "^0.5.45",
"nomnom": "npm:@gerhobbelt/nomnom",
"rimraf": "^5.0.7",
"underscore": "^1.13.6",
"geojson": "0.5.0"
},
"devDependencies": {
"@hey-api/openapi-ts": "^0.95.0",
"@maplibre/maplibre-gl-style-spec": "^24.1.1",
"@primevue/auto-import-resolver": "^4.3.7",
"@types/geojson": "^7946.0.16",
"@types/js-cookie": "^3.0.6",
"@types/underscore": "^1.13.0",
"arches-dev-dependencies": "archesproject/arches-dev-dependencies#dev/8.0.x",
"eslint-config-prettier": "^10.1.5",
"prettier": "^3.9.4",
"prettier-plugin-jinja-template": "^2.1.0",
"unplugin-vue-components": "^29.0.0",
"vite": "^6.2.1",
"webpack-bundle-tracker": "^3.2.1"
},
"dependencies": {
"@primeuix/styles": "^1.2.3",
"@primeuix/themes": "^1.2.3",
"ajv": "^8.17.1",
"arches": "bcgov/arches#stable/8.1.2_bcgov_12776",
"arches-component-lab": "bcgov/arches-component-lab#v0.0.1a13-bcgov",
"arches-controlled-lists": "archesproject/arches-controlled-lists#brf/feat/176_support_freeform_search",
"bcgov_arches_common": "bcgov/bcgov-arches-common#release/2.1.x",
"datatables.net": "^1.13.11",
"dompurify": "^3.4.11",
"eslint-config-prettier": "^10.1.5",
"js-cookie": "^3.0.5",
"maplibre-gl": "^5.7.2",
"pinia": "^3.0.4",
"primevue": "^4.3.9",
"typescript": "^5.6.2",
"underscore": "^1.13.6"
},
"nodeModulesPaths": {}
}