-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.3 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
{
"name": "test",
"version": "1.0.0",
"description": "vue nuxt element",
"author": "Linyer",
"private": true,
"scripts": {
"serve": "cross-env NODE_ENV=development nodemon server/index.js --watch server",
"build": "nuxt build",
"start": "cross-env NODE_ENV=production node server/index.js",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"fix": "eslint --fix --ext .js,.vue --ignore-path .gitignore ."
},
"lint-staged": {
"*.{js,vue}": "yarn lint",
"*.{css,vue}": "stylelint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@nuxtjs/axios": "^5.13.6",
"cross-env": "^5.2.1",
"element-ui": "^2.15.3",
"express": "^4.17.3",
"js-cookie": "^3.0.0",
"normalize.css": "^8.0.1",
"nuxt": "^2.15.7"
},
"devDependencies": {
"@nuxtjs/component-cache": "^1.1.6",
"@nuxtjs/eslint-config": "^6.0.1",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/proxy": "^2.1.0",
"@nuxtjs/stylelint-module": "^4.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.31.0",
"eslint-plugin-nuxt": "^2.0.0",
"husky": "^7.0.1",
"lint-staged": "^11.1.1",
"nodemon": "^2.0.12",
"sass": "^1.36.0",
"sass-loader": "^8.0.2",
"stylelint": "^13.13.1"
}
}