forked from oslokommune/okr-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.21 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.21 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
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": "okr-tracker",
"version": "2.7.5",
"private": true,
"scripts": {
"test:unit": "NODE_ENV=test jest",
"dev": "firebase emulators:start --import=./mock_data & vite",
"dev:test": "firebase emulators:start --import=./tests & vite",
"build": "vite build --mode production",
"build:test": "vite build --mode staging",
"test:e2e": "firebase emulators:start --import=./tests & vite & env-cmd -f ./.env.local cypress open",
"test:e2e:headless": "firebase emulators:exec --project origo-okr-tracker --import=./tests & vite & (sleep 10 && env-cmd -f ./.env.local cypress run --headless)",
"deploy": "npm run build && firebase deploy --project=production",
"deploy:test": "npm run build:test && firebase deploy --project=development",
"deploy:feature_branch": "npm run build && firebase hosting:channel:deploy --project=production $npm_config_name",
"lint": "eslint ./src ./functions",
"lint:style": "stylelint 'src/**/*.scss' 'src/**/*.vue'",
"lint:style:fix": "stylelint 'src/**/*.scss' 'src/**/*.vue' --fix",
"export_mock_data": "firebase emulators:export ./mock_data"
},
"dependencies": {
"@braid/griddle": "^2.3.1",
"@fortawesome/fontawesome-free": "^5.15.4",
"canvg": "^3.0.7",
"csurf": "^1.11.0",
"d3": "^7.6.1",
"d3-array": "^3.1.1",
"d3-axis": "^3.0.0",
"d3-dsv": "^3.0.1",
"d3-ease": "^3.0.1",
"d3-format": "^3.1.0",
"d3-hierarchy": "^3.1.1",
"d3-interpolate": "^3.0.1",
"d3-scale": "^4.0.2",
"d3-selection": "^3.0.0",
"d3-shape": "^3.0.1",
"d3-textwrap": "^3.0.0",
"d3-transition": "^3.0.1",
"date-fns": "^2.27.0",
"dompurify": "^2.3.4",
"firebase": "^8.10.0",
"flatpickr": "^4.6.9",
"focus-trap": "^7.0.0",
"fuse.js": "^6.5.3",
"marked": "^4.0.14",
"save-svg-as-png": "^1.4.17",
"swagger-ui": "^4.15.2",
"tabbable": "^6.0.0",
"tippy.js": "6.3.7",
"v-tooltip": "^2.1.3",
"vee-validate": "^3.4.14",
"vue": "^2.6.14",
"vue-click-outside": "^1.1.0",
"vue-content-loader": "^0.2.3",
"vue-flatpickr-component": "^8.1.7",
"vue-i18n": "^8.26.8",
"vue-meta": "^2.4.0",
"vue-router": "^3.5.3",
"vue-select": "^3.16.0",
"vue-toasted": "^1.1.28",
"vuefire": "^2.2.5",
"vuex": "^3.6.2",
"vuexfire": "^3.2.5"
},
"devDependencies": {
"@babel/eslint-parser": "7.16.5",
"@babel/preset-env": "^7.16.5",
"env-cmd": "^10.1.0",
"esbuild": "^0.15.14",
"eslint": "^8.5.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.2.0",
"firebase-tools": "^11.16.1",
"firestore-jest-mock": "^0.17.0",
"jest": "^27.4.7",
"prettier": "^2.5.1",
"sass": "^1.45.1",
"stylelint": "^13.0.1",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^22.0.0",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.21.0",
"vite": "^2.9.13",
"vite-plugin-vue2": "^1.9.0",
"vue-template-compiler": "^2.6.14"
},
"resolutions": {
"postcss": "8.3.11"
}
}