-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
86 lines (86 loc) · 2.18 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
81
82
83
84
85
86
{
"name": "z-blog",
"version": "1.0.0",
"description": "My amazing Nuxt.js project",
"author": "zlj",
"private": true,
"keywords": [
"vue",
"hapi",
"nuxt",
"博客",
"orm",
"sequelize",
"简书"
],
"scripts": {
"commit": "git-cz",
"precommit": "lint-staged",
"server": "cross-env NODE_ENV=development nodemon server/index.js",
"dev": "npm run lint && cross-env NODE_ENV=development nodemon server/index.js",
"build": "nuxt build",
"start": "cross-env NODE_ENV=production node server/index.js",
"generate": "nuxt generate",
"test": "jest",
"lint": "eslint --ext .ts,.js,.vue --ignore-path .gitignore ."
},
"lint-staged": {
"{src,test}/**/*.{ts, js}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@hapi/hapi": "^18.4.0",
"@hapi/inert": "^5.2.2",
"@hapi/vision": "^5.5.4",
"@nuxtjs/hapi": "^2.2.1",
"axios": "^0.19.0",
"cross-env": "^5.2.0",
"element-ui": "^2.12.0",
"env2": "^2.2.2",
"good": "^7.3.0",
"good-file": "^6.0.1",
"good-http": "^6.1.3",
"hapi-auth-jwt2": "^8.6.2",
"hapi-pagination": "^3.0.0",
"hapi-pino": "^6.1.0",
"hapi-swagger": "^10.1.2",
"highlight.js": "^9.15.10",
"inert": "^5.1.3",
"insert": "^1.0.1",
"joi": "^14.3.1",
"jsonwebtoken": "^8.5.1",
"less-loader": "^5.0.0",
"marked": "^0.7.0",
"moment": "^2.24.0",
"mysql2": "^1.7.0",
"nuxt": "~2.8.0",
"package": "^1.0.1",
"qs": "^6.9.0",
"sequelize": "^5.19.0",
"ts-node": "^8.4.1",
"typescript": "^3.6.2",
"uuid": "^3.3.3",
"vue-class": "^2.0.1",
"vue-property-decorator": "^8.2.2"
},
"devDependencies": {
"@nuxt/typescript": "^2.8.1",
"@nuxtjs/eslint-config": "^1.1.2",
"@typescript-eslint/eslint-plugin": "^2.3.3",
"@typescript-eslint/parser": "^2.3.3",
"@vue/test-utils": "^1.0.0-beta.27",
"babel-jest": "^24.1.0",
"eslint": "^6.5.1",
"git-cz": "^3.2.1",
"jest": "^24.1.0",
"less": "^3.10.3",
"lint-staged": "^9.4.2",
"node-sass": "^4.12.0",
"nodemon": "^1.18.9",
"sass-loader": "^8.0.0",
"sequelize-cli": "^5.5.1",
"vue-jest": "^4.0.0-0"
}
}