-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
111 lines (111 loc) · 3.29 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "163music",
"version": "1.0.0",
"private": false,
"author": "jacksonx <[email protected]> (jacksonx.cn)",
"scripts": {
"dev": "cross-env NODE_ENV=development node server",
"start": "cross-env NODE_ENV=production pm2 start server.js",
"build": "npx rimraf dist && cross-env NODE_ENV=production node build/build-production",
"lint": "eslint --ext .js,.vue .",
"lint:fix": "eslint --fix --ext .js,.vue .",
"test": "karma start test/unit/karma.conf.js --single-run",
"test:watch": "karma start test/unit/karma.conf.js",
"commit": "commit"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,vue}": "cross-env NODE_ENV=production eslint"
},
"dependencies": {
"axios": "^0.18.0",
"babel-loader": "^8.0.5",
"better-scroll": "^1.14.1",
"chalk": "^2.4.2",
"chokidar": "^2.1.2",
"compression": "^1.7.3",
"core-js": "^2.6.5",
"express": "^4.16.4",
"friendly-errors-webpack-plugin": "^1.7.0",
"lint-staged": "^8.1.4",
"log-symbols": "^2.2.0",
"lru-cache": "^4.1.1",
"memory-fs": "^0.4.1",
"pm2": "^3.2.9",
"route-cache": "^0.4.4",
"serve-favicon": "^2.5.0",
"swiper": "^4.4.6",
"vue": "^2.6.6",
"vue-awesome-swiper": "^3.1.3",
"vue-lazyload": "^1.2.6",
"vue-loader": "^15.6.2",
"vue-router": "^3.0.1",
"vue-server-renderer": "^2.6.6",
"vuex": "^3.0.1",
"vuex-router-sync": "^5.0.0",
"webpack": "^4.29.3",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.2.3",
"webpack-dev-middleware": "^3.5.1",
"webpack-hot-middleware": "^2.24.3",
"webpack-merge": "^4.2.1",
"webpack-node-externals": "^1.7.2"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@commitlint/cli": "^7.3.2",
"@commitlint/config-conventional": "^7.3.1",
"@commitlint/prompt-cli": "^7.3.1",
"@vue/cli-plugin-babel": "^3.0.5",
"@vue/cli-plugin-eslint": "^3.3.0",
"@vue/cli-service": "^3.0.5",
"@vue/eslint-config-airbnb": "^4.0.0",
"@vue/server-test-utils": "^1.0.0-beta.29",
"@vue/test-utils": "^1.0.0-beta.29",
"babel-eslint": "^10.0.1",
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"css-loader": "^2.1.0",
"eslint": "^5.8.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-vue": "^5.1.0",
"file-loader": "^3.0.1",
"husky": "^1.3.1",
"karma": "^4.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sinon-chai": "^2.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "^0.0.32",
"karma-webpack": "^3.0.5",
"mocha": "^5.2.0",
"node-sass": "^4.11.0",
"phantomjs-prebuilt": "^2.1.16",
"postcss-loader": "^3.0.0",
"postcss-pixel-to-viewport": "^1.0.2",
"sass-loader": "^7.1.0",
"sinon": "^7.2.3",
"sinon-chai": "^3.3.0",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.6"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"main": "main.js",
"license": "MIT"
}