-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
103 lines (103 loc) · 3.21 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
96
97
98
99
100
101
102
103
{
"name": "openearth-viewer",
"version": "1.0.0",
"private": true,
"author": {
"name": "Deltares",
"url": "https://www.deltares.nl"
},
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"postinstall": "patch-package",
"dato": "node ./config/dato/dump-data.mjs",
"prebuild": "npm run dato",
"build": "vue-cli-service build && cp netlify.toml dist/netlify.toml",
"predev": "npm run dato",
"dev": "run-p serve start-server",
"fix": "run-s fix:*",
"fix:js": "vue-cli-service lint",
"fix:scss": "stylelint ./src/**/*.{vue,scss} --fix",
"lint": "run-s lint:*",
"lint:js": "vue-cli-service lint --no-fix",
"lint:scss": "stylelint ./src/**/*.{vue,scss}",
"serve": "vue-cli-service serve --port 3000 --color",
"start": "npm run serve",
"start-server": "netlify dev",
"add-translation": "node scripts/add-translation/index.mjs",
"migrations:create": "ts-node scripts/dato/create",
"migrations:apply-staging": "ts-node scripts/dato/apply-staging",
"migrations:apply-main": "ts-node scripts/dato/apply-main"
},
"dependencies": {
"@datocms/cli": "^2.0.14",
"@deltares/vuetify-theme": "^0.5.0",
"@mapbox/mapbox-gl-draw": "1.3.0",
"@mapbox/mapbox-gl-draw-static-mode": "^1.0.1",
"@sindresorhus/slugify": "^2.1.0",
"@types/prompt": "^1.1.8",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"@vue/composition-api": "^1.7.2",
"axios": "^0.24.0",
"core-js": "^3.6.5",
"date-fns": "^2.28.0",
"datocms-client": "^3.5.9",
"deepl-node": "^1.13.0",
"dotenv-safe": "^8.2.0",
"email-validator": "^2.0.4",
"exponential-backoff": "^3.1.1",
"file-saver": "^2.0.5",
"html-loader": "4.2.0",
"inquirer": "^8.2.0",
"jszip": "^3.7.1",
"jszip-utils": "^0.1.0",
"mapbox-gl": "^2.15.0",
"mapbox-gl-draw-rectangle-mode": "^1.0.4",
"mkdirp": "^1.0.4",
"patch-package": "^6.4.7",
"postinstall-postinstall": "^2.1.0",
"prompt": "^1.3.0",
"ramda": "^0.27.1",
"raw-loader": "^4.0.2",
"rimraf": "^3.0.2",
"sortablejs": "^1.14.0",
"typescript": "^5.5.4",
"v-dragged": "^0.0.5",
"vue": "^2.7.0",
"vue-dndrop": "^1.1.12",
"vue-i18n": "^8.26.7",
"vue-markdown-render": "^1.1.3",
"vue-router": "^3.2.0",
"vue-tour": "^2.0.0",
"vue2mapbox-gl": "^0.15.0",
"vuetify": "^2.2.11",
"vuex": "^3.4.0",
"wkt": "^0.1.1",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/eslint-parser": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@tsconfig/recommended": "^1.0.6",
"@vue/cli-plugin-babel": "4.5.15",
"@vue/cli-plugin-eslint": "^5.0.8",
"@vue/cli-plugin-router": "4.5.15",
"@vue/cli-plugin-vuex": "4.5.15",
"@vue/cli-service": "4.5.15",
"eslint": "^8.56.0",
"eslint-plugin-vue": "9.27.0",
"netlify-cli": "^12.0.9",
"npm-run-all": "^4.1.5",
"sass": "1.26.3",
"sass-loader": "8.0.0",
"stylelint": "^16.6.1",
"stylelint-config-property-sort-order-smacss": "^10.0.0",
"stylelint-config-standard": "^36.0.1",
"vue-cli-plugin-vuetify": "^2.4.3",
"vue-template-compiler": "^2.6.11",
"vuetify-loader": "^1.9.2"
}
}