-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.34 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.34 KB
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
{
"name": "artorias",
"version": "1.0.0",
"description": "Artorias",
"author": "PengYi",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon server/index.js --watch server",
"build": "nuxt build",
"start": "cross-env NODE_ENV=production node server/index.js",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore ."
},
"lint-staged": {
"*.{js,vue}": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@nuxtjs/axios": "^5.3.6",
"@nuxtjs/component-cache": "^1.1.5",
"@nuxtjs/proxy": "^1.3.3",
"@nuxtjs/sentry": "^3.0.0",
"cross-env": "^6.0.3",
"koa": "^2.6.2",
"nuxt": "^2.10.2",
"vuex-persistedstate": "^2.5.4",
"weixin-js-sdk": "^1.4.0-test"
},
"devDependencies": {
"@nuxtjs/dotenv": "^1.3.0",
"@nuxtjs/eslint-config": "^1.0.1",
"@nuxtjs/eslint-module": "^1.0.0",
"@vue/eslint-config-standard": "^5.0.1",
"babel-eslint": "^10.0.1",
"consola": "^2.9.0",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-nuxt": ">=0.4.2",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^3.1.0",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"lint-staged": "^9.4.3",
"nodemon": "^2.0.0",
"prettier": "^1.16.4"
}
}