forked from caresteouvert/caresteouvert
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.96 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
{
"name": "Caresteouvert",
"engines": {
"node": "12"
},
"scripts": {
"dev": "nuxt --hostname 0.0.0.0 --port 1234",
"icons": "icon-font-generator icons/*.svg --out font --normalize --html --prefix='osm' --name osm",
"sprites": "spritezero ./static/sprite/caresteouvert ./icons && spritezero --retina ./static/sprite/caresteouvert@2x ./icons",
"categories": "node ./script/categories_i18n_extract.js && node ./script/categories_sql.js",
"build": "yarn run icons && yarn run sprites && nuxt build",
"test": "jest --watch",
"start": "nuxt start"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"transform": {
"^.+\\.js$": "babel-jest",
"^.+\\.vue$": "vue-jest"
},
"moduleNameMapper": {
"\\.(svg|png|jpg)$": "<rootDir>/tests/file_mock.js"
}
},
"htmlnano": {
"minifySvg": false
},
"browserslist": [
"last 2 Firefox versions",
"last 2 Chrome versions",
"last 2 Edge versions",
"last 2 Safari versions"
],
"posthtml": {
"recognizeSelfClosing": true
},
"staticFiles": {
"staticPath": "static",
"watcherGlob": "**/**"
},
"devDependencies": {
"@mapbox/spritezero-cli": "https://github.com/francois2metz/spritezero-cli",
"@nuxtjs/vuetify": "^1.11.0",
"@vue/test-utils": "^1.0.0-beta.32",
"icon-font-generator": "^2.1.10",
"jest-cli": "^25.1.0",
"vue-jest": "^4.0.0-0"
},
"dependencies": {
"cookie": "^0.4.0",
"frontmatter-markdown-loader": "^3.3.0",
"glob": "^7.1.6",
"i18next-client": "^1.11.4",
"is-https": "^1.0.0",
"js-cookie": "^2.2.1",
"lodash.chunk": "^4.2.0",
"lodash.debounce": "^4.0.8",
"mapbox-gl": "^1.0.0",
"moment": "^2.24.0",
"nuxt": "^2.12.2",
"opening_hours": "^3.5.0",
"transport-hours": "https://github.com/Jungle-Bus/transport-hours-js",
"vue-i18n": "^8.12.0",
"vue-linkify": "^1.0.1",
"vue-mapbox": "osmontrouge/vue-mapbox#update"
}
}