-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.14 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": "tudelft-spacefinder",
"version": "1.0.0",
"description": "App to easily find available spaces on the TU Delft Campus.",
"author": "De Voorhoede (https://www.voorhoede.nl)",
"private": true,
"scripts": {
"analyze": "nuxt build --analyze",
"prebuild": "touch ./.env && rimraf dist/ && npm run data",
"build": "nuxt generate",
"predev": "rimraf ./.nuxt",
"data": "node scripts/data/index.js",
"dev": "PORT=3463 nuxt",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint",
"proxy": "ngrok http 3463",
"start": "http-server './dist/client/' -c-1 -o -p 3464",
"test": "jest"
},
"dependencies": {
"@nuxtjs/pwa": "^3.0.0-beta.16",
"ajv": "^6.10.1",
"csv": "^5.1.1",
"deep-freeze": "0.0.1",
"lodash.debounce": "^4.0.8",
"got": "^9.6.0",
"mapbox-gl": "^1.1.0",
"normalize.css": "^8.0.1",
"nuxt": "^2.0.0",
"nuxt-i18n": "^5.12.7",
"ramda": "^0.26.1",
"slugify": "^1.3.4",
"vue-svg-loader": "^0.12.0",
"vue-virtual-scroller": "^1.0.0-rc.2",
"vuex-map-fields": "^1.3.4",
"vuex-persistedstate": "^2.5.4"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^0.0.1",
"@nuxtjs/eslint-module": "^0.0.1",
"@vue/test-utils": "^1.0.0-beta.27",
"autoprefixer": "^9.6.1",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"dotenv-safe": "^6.1.0",
"eslint": "^5.15.1",
"eslint-config-prettier": "^4.1.0",
"eslint-config-standard": ">=12.0.0",
"eslint-plugin-import": ">=2.16.0",
"eslint-plugin-jest": ">=22.3.0",
"eslint-plugin-node": ">=8.0.1",
"eslint-plugin-nuxt": ">=0.4.2",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": ">=4.0.1",
"eslint-plugin-standard": ">=4.0.0",
"eslint-plugin-vue": "^5.2.2",
"jest": "^24.1.0",
"lodash": "^4.17.14",
"nodemon": "^1.18.9",
"postcss-custom-properties": "^9.0.1",
"postcss-import": "^12.0.1",
"prettier": "^1.16.4",
"rimraf": "^2.6.3",
"vue-jest": "^3.0.3"
},
"optionalDependencies": {
"http-server": "^0.11.1",
"ngrok": "^3.2.1"
}
}