This repository has been archived by the owner on Sep 4, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.54 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
{
"version": "0.1.0",
"name": "typescript-nuxt",
"description": "Nuxt and Typescript Template",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/christophwolff/nuxt-typescript-template.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/christophwolff/nuxt-typescript-template/issues"
},
"homepage": "https://github.com/christophwolff/nuxt-typescript-template#readme",
"scripts": {
"dev": "nuxt",
"dev-debug": "node --inspect node_modules/.bin/nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint-staged": "lint-staged",
"lint:all": "npm run lint -- .",
"lint:fix:all": "npm run lint:fix -- .",
"lint:fix": "eslint --ignore-path .gitignore --ext ts --ext tsx --ext js --ext jsx --ext vue --fix",
"lint": "eslint --ignore-path .gitignore--ext ts --ext tsx --ext js --ext jsx --ext vue",
"post-update": "yarn upgrade --latest",
"type-check": "tsc"
},
"dependencies": {
"nuxt": "^2.8.1",
"nuxt-property-decorator": "^2.3.0",
"ts-node": "^8.2.0",
"vuex-class": "^0.3.2"
},
"devDependencies": {
"@nuxt/typescript": "^2.8.1",
"@nuxt/vue-app": "^2.8.1",
"@types/node": "^12.0.7",
"@vue/eslint-config-prettier": "^4.0.1",
"@vue/eslint-config-typescript": "^4.0.0",
"eslint": "^5.15.1",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-vue": "^5.2.2",
"node-sass": "^4.12.0",
"nodemon": "^1.19.1",
"prettier": "^1.18.2",
"ts-vue-plugin": "^0.2.0"
}
}