-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.39 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "nuxtjs-typescript-boilerplate",
"description": "Nuxtjs、Typescriptを利用したボイラープレートです",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "nuxt-ts",
"build": "nuxt-ts build",
"start": "nuxt-ts start",
"generate": "cross-env PUBLIC_PATH=/nuxtjs/ nuxt-ts generate",
"lint": "eslint --ext .js,.ts,.vue .",
"lintfix": "eslint --fix --ext .js,.ts,.vue .",
"precommit": "npm run lint",
"test": "jest"
},
"author": {
"name": "isystk",
"email": "[email protected]",
"url": "https://profile.isystk.com/"
},
"repository": {
"type": "git",
"url": "git+https://github.com:isystk/nuxtjs-typescript-boilerplate.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/isystk/nuxtjs-typescript-boilerplate/issues"
},
"homepage": "https://github.com/isystk/nuxtjs-typescript-boilerplate#readme",
"dependencies": {
"@nuxt/typescript": "^2.8.1",
"@nuxt/typescript-runtime": "^0.4.5",
"@nuxt/vue-app": "^2.12.2",
"@nuxtjs/axios": "^5.9.7",
"@nuxtjs/moment": "^1.6.0",
"@nuxtjs/pwa": "^3.0.0-beta.20",
"@types/chart.js": "^2.9.19",
"@types/lodash": "^4.14.149",
"@types/node": "^13.11.1",
"@types/webpack": "^4.41.11",
"admin-lte": "^3.0.4",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"core-js": "^2.6.11",
"cross-env": "^7.0.2",
"express": "^4.17.1",
"js-cookie": "^2.2.1",
"nuxt": "^2.8.1",
"nuxt-property-decorator": "^2.5.1",
"ts-node": "^8.8.2",
"vue-chartjs": "^3.5.0",
"vue-property-decorator": "^8.4.1",
"vuex-module-decorators": "^0.16.1"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@nuxt/typescript-build": "^0.6.5",
"@nuxtjs/eslint-config-typescript": "^1.0.0",
"@nuxtjs/proxy": "^1.3.3",
"@types/jest": "^24.0.15",
"@vue/test-utils": "^1.0.0-beta.29",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "23.4.0",
"babel-preset-vue": "^2.0.2",
"eslint": "^6.7.2",
"eslint-config-prettier": "^4.1.0",
"eslint-loader": "^3.0.2",
"eslint-plugin-nuxt": "^0.5.0",
"eslint-plugin-prettier": "^3.0.1",
"jest": "^24.8.0",
"node-sass": "^4.12.0",
"nuxt-i18n": "^6.9.1",
"prettier": "^1.16.4",
"sanitize-html": "^1.23.0",
"sass-loader": "^7.1.0",
"ts-jest": "^24.0.2",
"vue-jest": "^3.0.4"
}
}