-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.28 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
{
"name": "nuxt-text",
"version": "1.0.0",
"description": "nuxt text",
"author": "Mars",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon server/index.js --watch server",
"build": "npm run lint && nuxt build",
"start": "cross-env NODE_ENV=production node server/index.js",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore . --fix & stylelint 'assets/**/*.scss' --fix"
},
"dependencies": {
"@better-scroll/mouse-wheel": "^2.0.0-beta.6",
"@better-scroll/scroll-bar": "^2.0.0-beta.6",
"cross-env": "^5.2.0",
"element-ui": "^2.4.11",
"express": "^4.16.4",
"mobile-device-detect": "^0.3.3",
"nuxt": "^2.0.0",
"stylelint-config-sass-guidelines": "^7.0.0"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^2.0.2",
"@nuxtjs/style-resources": "^1.0.0",
"autoprefixer": "^9.7.4",
"babel-eslint": "^10.1.0",
"babel-plugin-component": "^1.1.1",
"eslint": "^6.8.0",
"node-sass": "^4.13.1",
"nodemon": "^1.18.9",
"normalize.css": "^8.0.1",
"postcss-loader": "^3.0.0",
"sass-loader": "^8.0.2",
"stylelint": "^13.2.1",
"stylelint-config-standard": "^20.0.0",
"stylelint-order": "^4.0.0",
"stylelint-webpack-plugin": "^1.2.3"
}
}