-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (45 loc) · 1.23 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
{
"name": "tm-nuxtjs-starter",
"version": "1.0.0",
"description": "vue+nuxtjs+vuex starter",
"main": "index.js",
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"export": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint",
"pyserve": "cd dist; python3 -m http.server",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tomimick/tm-nuxtjs-starter.git"
},
"keywords": [
"vue",
"nuxtjs",
"vuex",
"axios"
],
"author": "Tomi Mickelsson",
"license": "MIT",
"bugs": {
"url": "https://github.com/tomimick/tm-nuxtjs-starter/issues"
},
"homepage": "https://github.com/tomimick/tm-nuxtjs-starter",
"dependencies": {
"axios": "^0.18.0",
"nuxt": "^2.3.4",
"vuex": "^3.0.1"
},
"devDependencies": {
"node-sass": "^4.11.0",
"sass-loader": "^7.1.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.11.1",
"eslint-loader": "^2.1.1",
"eslint-plugin-vue": "^5.0.0"
}
}