-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
48 lines (48 loc) · 1.2 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
{
"name": "nuxt-typescript",
"version": "0.11.0",
"description": "TypeScript module for Nuxt",
"homepage": "https://github.com/wagerfield/nuxt-typescript#readme",
"author": "Matthew Wagerfield <matthew@wagerfield.com>",
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/wagerfield/nuxt-typescript.git"
},
"bugs": {
"url": "https://github.com/wagerfield/nuxt-typescript/issues"
},
"keywords": [
"nuxt",
"typescript",
"module"
],
"files": [
"index.js",
"cache.js"
],
"scripts": {
"lint": "eslint .",
"format": "prettier --write '*.{js,json,md}' 'example/**/*.{js,json,ts,vue}'",
"precommit": "yarn lint && yarn format"
},
"dependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"cache-loader": "^1.2.2",
"fork-ts-checker-webpack-plugin": "^0.4.2",
"thread-loader": "^1.1.5",
"ts-loader": "3.5.0",
"tslint": "^5.10.0",
"typescript": "^2.9.1",
"webpack": "3.12.0"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-supermind": "^0.48.0",
"husky": "^0.14.3",
"prettier": "1.13.5"
}
}