-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.42 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 3.42 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
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
{
"name": "vue-construct",
"version": "1.0.0",
"description": "study",
"main": "index.js",
"scripts": {
"mock": "nodemon -q ./server/index.js",
"watch": "nodemon -q --watch webpack/dev.js webpack/dev.js",
"dev": "concurrently \"npm run mock\" \"npm run watch\" --kill-others",
"analyze": "cross-env NODE_ENV=production ANALYZE=active webpack -p --progress --colors --config webpack/webpack.config.prod.js",
"prod": "cross-env NODE_ENV=production webpack -p --progress --colors --config webpack/webpack.config.prod.js",
"test:unit": "cross-env BABEL_ENV=test karma start test/unit/karma.conf.js",
"test:e2e": "mocha ./test/e2e/index.js",
"lint": "npm run lint:js && npm run lint:css",
"lint:js": "eslint --ext .vue,.js src/**",
"lint:css": "stylelint 'src/**/*.(vue|scss)' --syntax scss",
"build:components": "node ./build/build.doc.components.js",
"build:componentsBase": "node ./build/build.doc.componentsBase.js"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"author": "codelittleprince",
"license": "MIT",
"devDependencies": {
"ajv": "^6.5.4",
"autoprefixer": "^7.2.6",
"babel": "^6.23.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-plugin-istanbul": "^5.1.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"boom": "^7.2.0",
"chai": "^4.2.0",
"chalk": "^2.4.1",
"clean-webpack-plugin": "^0.1.19",
"concurrently": "^3.6.1",
"copy-webpack-plugin": "^4.5.3",
"cross-env": "^5.2.0",
"css-loader": "^0.28.11",
"eslint": "^5.7.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-html": "^4.0.6",
"eslint-plugin-vue": "^5.0.0-beta.3",
"file-loader": "^2.0.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.1.2",
"jasmine-core": "^3.2.1",
"karma": "^3.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-jasmine": "^1.1.2",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sinon-chai": "^1.3.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.0-rc.2",
"koa": "^2.5.3",
"koa-bodyparser": "^4.2.1",
"koa-router": "^7.4.0",
"koa-send": "^4.1.3",
"marked": "^0.4.0",
"mini-css-extract-plugin": "^0.4.4",
"mocha": "^5.2.0",
"mockjs": "^1.0.1-beta3",
"nightmare": "^3.0.1",
"node-sass": "^4.9.4",
"nodemon": "^1.18.4",
"opn": "^5.4.0",
"portfinder": "^1.0.19",
"postcss": "^6.0.23",
"postcss-loader": "^2.1.6",
"sass-loader": "^6.0.7",
"sinon": "^4.5.0",
"sinon-chai": "^3.2.0",
"style-loader": "^0.19.1",
"stylelint": "^9.6.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-processor-html": "^1.0.0",
"uglifyjs-webpack-plugin": "^2.0.1",
"url-loader": "^0.6.2",
"vue-eslint-parser": "^3.2.2",
"vue-loader": "^15.4.2",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.5.17",
"webpack": "^4.20.2",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9"
},
"dependencies": {
"axios": "^0.18.0",
"vue": "^2.5.17",
"vue-router": "^3.0.1",
"vuex": "^3.0.1"
}
}