-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.71 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
{
"name": "wayline-ks",
"version": "1.2.1",
"description": "Kitchen sink for testing Wayline interactive demos",
"author": "Cyberscape <[email protected]>",
"private": true,
"license": "MIT",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon -r dotenv/config server/index.js --watch server",
"build": "nuxt build",
"start": "cross-env NODE_ENV=production node server/index.js",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint"
},
"heroku-run-build-script": true,
"dependencies": {
"@nuxtjs/axios": "^5.3.6",
"@nuxtjs/pwa": "^2.6.0",
"@wayline/config": "cscape/wayline-config",
"@wayline/transformer": "cscape/wayline-transformer#731640aab2088b68b27efef68f993abc7ee5bdca",
"axios": "^0.18.0",
"bootstrap": "^4.1.3",
"bootstrap-vue": "^2.0.0-rc.11",
"cross-env": "^5.2.0",
"css-loader": "^2.1.0",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"google-polyline": "^1.0.3",
"leaflet-bing-layer": "^3.3.0",
"nuxt": "^2.4.0",
"nuxt-leaflet": "^0.0.15",
"ol": "^5.3.0",
"pug": "^2.0.3",
"pug-plain-loader": "^1.0.0",
"vue-progressbar": "^0.7.5",
"vue2-leaflet": "^1.2.3",
"vuelayers": "^0.11.1"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^0.0.1",
"babel-eslint": "^8.2.1",
"eslint": "^5.0.1",
"eslint-config-standard": ">=12.0.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": ">=2.14.0",
"eslint-plugin-jest": ">=21.24.1",
"eslint-plugin-node": ">=7.0.1",
"eslint-plugin-promise": ">=4.0.1",
"eslint-plugin-standard": ">=4.0.0",
"eslint-plugin-vue": "^5.0.0",
"nodemon": "^1.18.9"
}
}