-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·107 lines (107 loc) · 3.15 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
{
"name": "Harpers",
"description": "QA Forum Powered By ThinkJS & Vue & Webpack",
"version": "1.0.0",
"scripts": {
"start": "node ./www/web/tools/script.js --mode=development & node www/development.js",
"dist": "node ./www/web/tools/script.js --mode=production",
"compile": "npm run lint && npm run test && babel src/ --out-dir app/",
"test": "ava",
"lint": "eslint src/",
"validate": "npm ls",
"gendoc": "apidoc -i src/api/logic -o www/doc"
},
"pre-commit": [
"lint",
"validate",
"test"
],
"browserslist": [
"last 5 versions"
],
"dependencies": {
"babel-preset-es2015-loose": "^8.0.0",
"babel-runtime": "^6.23.0",
"marked": "^0.3.6",
"request": "^2.79.0",
"request-promise": "^4.1.1",
"source-map-support": "0.4.0",
"think-cors": "^1.1.2",
"thinkjs": "2.2.x",
"vue-scroll": "^2.0.3",
"webpack-core": "^0.6.9"
},
"devDependencies": {
"apidoc": "^0.17.6",
"autoprefixer": "^6.7.7",
"ava": "^0.18.2",
"axios": "^0.16.0",
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-eslint": "^7.2.1",
"babel-loader": "^6.4.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-stage-1": "^6.22.0",
"babel-preset-stage-2": "^6.22.0",
"babel-preset-stage-3": "^6.22.0",
"browserslist": "^1.7.7",
"caniuse-db": "^1.0.30000677",
"clean-webpack-plugin": "^0.1.16",
"copy-webpack-plugin-hash": "^4.0.1",
"core-js": "^2.4.1",
"css-loader": "^0.27.3",
"eslint": "^3.18.0",
"eslint-config-standard": "^7.1.0",
"eslint-loader": "^1.7.0",
"eslint-plugin-html": "^2.0.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^2.1.1",
"exports-loader": "^0.6.4",
"expose-loader": "^0.7.3",
"express": "^4.15.2",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.10.1",
"happypack": "^3.0.3",
"html-loader": "^0.4.5",
"html-res-webpack-plugin": "^2.0.0",
"http-proxy": "^1.16.2",
"image-webpack-loader": "^3.2.0",
"imports-loader": "^0.7.1",
"less": "^2.7.2",
"less-loader": "^4.0.2",
"memory-fs": "^0.4.1",
"postcss-import": "^9.1.0",
"postcss-loader": "^1.3.3",
"precommit-hook": "^3.0.0",
"proxy-middleware": "^0.15.0",
"steamer-webpack-utils": "^1.0.1",
"style-loader": "^0.15.0",
"stylelint": "^7.9.0",
"stylelint-config-standard": "^16.0.0",
"stylelint-processor-html": "^1.0.0",
"stylelint-webpack-plugin": "^0.7.0",
"url-loader": "^0.5.8",
"vue": "^2.2.6",
"vue-loader": "^11.3.4",
"vue-router": "^2.3.1",
"vue-template-compiler": "^2.2.6",
"vuex": "^2.2.1",
"webpack": "^2.3.2 ",
"webpack-dev-middleware": "^1.10.1",
"webpack-dev-server": "^2.4.2",
"webpack-hot-middleware": "^2.17.1",
"webpack-md5-hash": "^0.0.5",
"webpack-merge": "^4.1.0",
"webpack-spritesmith": "^0.3.3",
"webpack-uglify-parallel": "^0.1.3"
},
"repository": "",
"license": "MIT",
"apidoc": {
"title": "Harpers API 接口文档",
"url": "/api",
"sampleUrl": "/api"
}
}