-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
95 lines (95 loc) · 3.03 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "bydelsfakta",
"version": "1.1.94",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"serve": "npm run dev",
"backend": "env-cmd -f ./.env.local nodemon server/server.js",
"build": "vite build --mode production",
"build:prod": "npm install && npm run lint && npm run test:unit && npm run build",
"docker": "npm run build:prod && npm run docker:build",
"docker:build": "docker build -t ghcr.io/oslokommune/bydelsfakta-frontend:$npm_package_version .",
"docker:push": "docker push ghcr.io/oslokommune/bydelsfakta-frontend:$npm_package_version",
"lint": "eslint ./src ./server --ext .js,.vue",
"lint:style": "stylelint 'src/**/*.scss' 'src/**/*.vue'",
"lint:style:fix": "stylelint 'src/**/*.scss' 'src/**/*.vue' --fix",
"test:unit": "NODE_ENV=test jest",
"test:unit:watch": "NODE_ENV=test jest --watchAll"
},
"engines": {
"node": "20"
},
"browserslist": {
"production": [
">0.1%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@oslokommune/punkt-assets": "^11.0.1",
"@oslokommune/punkt-vue": "^11.0.1",
"@unhead/vue": "^1.9.11",
"@vitejs/plugin-vue": "^5.0.4",
"@vue-a11y/skip-to": "^3.0.3",
"@vue/compat": "^3.4.14",
"@xmldom/xmldom": "^0.8.6",
"axios": "^1.7.4",
"canvas": "^2.11.2",
"canvg": "^3.0.7",
"core-js": "^3.15.1",
"d3": "^7.9.0",
"d3-svg-legend": "git+https://github.com/oslokommune/d3-legend-v7-fix.git#3c0bca337bb476e38ea19bf103cffbafba5bc1c4",
"d3-textwrap": "^3.0.0",
"d3-voronoi": "^1.1.4",
"leaflet": "^1.7.1",
"leaflet-gesture-handling": "^1.2.2",
"nodemon": "^3.1.3",
"save-svg-as-png": "^1.4.17",
"vue": "^3.4.14",
"vue-dragscroll": "^4.0.5",
"vue-gtag": "^2.0.1",
"vue-i18n": "^9.14.2",
"vue-router": "^4.3.2",
"vue3-resize": "^0.2.0",
"vuex": "^4.0.2",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.2/xlsx-0.20.2.tgz"
},
"devDependencies": {
"@babel/eslint-parser": "^7.21.3",
"@babel/preset-env": "^7.20.2",
"@vue/test-utils": "^2.4.6",
"@vue/vue3-jest": "^29.2.6",
"autoprefixer": "^10.4.19",
"babel-eslint": "^10.1.0",
"env-cmd": "^10.1.0",
"eslint": "^8.38.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.26.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^2.8.7",
"sass": "^1.62.0",
"sass-loader": "^13.2.2",
"stylelint": "^15.10.1",
"stylelint-config-rational-order-fix": "^0.1.9",
"stylelint-config-recommended-scss": "^10.0.0",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-order": "^6.0.3",
"stylelint-scss": "^4.6.0",
"vite": "^5.4.6"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.18.0"
}
}