-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.69 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.69 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
{
"name": "v-mapbox-docs",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lintfix": "npm run lint:eslint:fix && npm run lint:prettier:fix",
"lint:eslint": "eslint \"{,!(node_modules|.nuxt|static)/**/}*.{js,vue}\"",
"lint:eslint:fix": "eslint --fix \"{,!(node_modules|.nuxt|static)/**/}*.{js,vue}\"",
"lint:prettier": "prettier --check \"{,!(node_modules|.nuxt|static)/**/}*.{js,vue}\"",
"lint:prettier:fix": "prettier --write \"{,!(node_modules|.nuxt|static)/**/}*.{js,vue}\"",
"test": "ava"
},
"dependencies": {
"@nuxt/content-theme-docs": "^0.10.2",
"nuxt": "^2.15.7"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@nuxtjs/eslint-config": "^6.0.0",
"@nuxtjs/eslint-module": "^3.0.2",
"babel-eslint": "^10.1.0",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^4.3.8",
"prettier": "^2.3.2"
},
"author": {
"name": "GeoSpoc Dev Team",
"email": "developers@geospoc.com",
"url": "https://geospoc.io"
},
"contributors": [
{
"name": "Vinayak Kulkarni",
"email": "inbox.vinayak@gmail.com",
"url": "https://vinayakkulkarni.dev"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/geospoc/v-mapbox-docs.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/geospoc/v-mapbox-docs/issues"
},
"homepage": "https://v-mapbox-docs.geospoc.io"
}