-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
126 lines (126 loc) · 4.07 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "bloge",
"version": "0.0.5",
"description": "",
"author": "Ajain Vivek",
"license": "GPL-3.0",
"private": true,
"scripts": {
"dev": "node server",
"watch:server": "tsc -w",
"debug": "nodemon --inspect server",
"build:theme": "node build/bin/build-theme.js",
"styleguide": "vue-styleguidist server",
"styleguide:build": "vue-styleguidist build",
"start": "cross-env NODE_ENV=production node server",
"build": "rimraf dist && npm run build:client && npm run build:server",
"build:client": "cross-env NODE_ENV=production webpack --config build/webpack.client.config.js --progress --hide-modules",
"build:server": "cross-env NODE_ENV=production webpack --config build/webpack.server.config.js --progress --hide-modules",
"test": "npm run test:unit && npm run test:e2e",
"test:e2e": "rimraf test/e2e/reports && cross-env NODE_ENV=testing node test/e2e/runner.js",
"test:unit": "rimraf test/unit/coverage && cross-env NODE_ENV=testing karma start test/unit/karma.conf.js --single-run",
"db:migrate": "sequelize db:migrate",
"db:migrate:undo": "sequelize db:migrate:undo",
"db:migrate:create": "sequelize migration:create"
},
"engines": {
"node": ">=7.0",
"npm": ">=4.0"
},
"devDependencies": {
"@types/express": "^4.11.1",
"@types/morgan": "^1.7.35",
"@types/node": "^9.4.7",
"@types/sequelize": "^4.27.10",
"autoprefixer": "^7.1.2",
"avoriaz": "^6.0.0",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"chai": "^4.1.0",
"chromedriver": "^2.31.0",
"cross-env": "^5.0.2",
"cross-spawn": "^5.1.0",
"css-loader": "^0.28.11",
"cssnano": "^3.10.0",
"eslint": "^4.3.0",
"eslint-config-google": "^0.9.1",
"eslint-loader": "^1.9.0",
"eslint-plugin-html": "^3.1.1",
"eslint-plugin-vue": "^4.4.0",
"file-loader": "^1.1.5",
"friendly-errors-webpack-plugin": "^1.6.1",
"html-webpack-plugin": "^2.30.1",
"inject-loader": "^3.0.1",
"js-beautify": "^1.7.5",
"jsdom": "^11.6.2",
"json-loader": "^0.5.7",
"karma": "^1.4.1",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sinon-chai": "^1.2.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "^0.0.31",
"karma-webpack": "^2.0.4",
"lolex": "^2.1.2",
"memory-fs": "^0.4.1",
"mkdirp": "^0.5.1",
"mocha": "^4.0.1",
"nightwatch": "^0.9.15",
"node-polyglot": "^2.2.2",
"node-sass": "^4.5.3",
"phantomjs-prebuilt": "^2.1.14",
"postcss-loader": "^2.0.6",
"pug": "^2.0.0-rc.3",
"rimraf": "^2.6.1",
"sass-loader": "^6.0.5",
"selenium-server": "^3.3.1",
"sequelize-cli": "^4.0.0",
"sinon": "^4.0.1",
"sinon-chai": "^2.12.0",
"string-replace-webpack-plugin": "^0.1.3",
"style-loader": "^0.20.3",
"stylelint": "^8.0.0",
"stylelint-config-standard": "^17.0.0",
"stylelint-processor-html": "^1.0.0",
"stylelint-scss": "^2.0.0",
"stylelint-webpack-plugin": "^0.9.0",
"sw-precache-webpack-plugin": "^0.11.4",
"tslint": "^5.9.1",
"tslint-loader": "^3.6.0",
"typescript": "^2.7.2",
"url-loader": "^0.6.2",
"vue-loader": "^13.0.2",
"vue-template-compiler": "^2.5.16",
"webpack": "^3.4.1",
"webpack-dev-middleware": "^1.12.0",
"webpack-hot-middleware": "^2.18.2",
"webpack-merge": "^4.1.0"
},
"dependencies": {
"axios": "^0.16.2",
"body-parser": "^1.18.2",
"compression": "^1.7.0",
"dotenv": "^5.0.1",
"element-ui": "^2.2.2",
"es6-promise": "^4.1.1",
"express": "^4.16.3",
"lru-cache": "^4.1.0",
"morgan": "^1.9.0",
"mysql": "^2.15.0",
"mysql2": "^1.5.3",
"sequelize": "^4.37.3",
"serve-favicon": "^2.4.3",
"tslint-config-airbnb": "^5.8.0",
"vue": "^2.4.2",
"vue-i18n": "^7.1.0",
"vue-router": "^2.7.0",
"vue-server-renderer": "^2.4.2",
"vue-styleguidist": "^1.5.0",
"vuex": "^2.2.1",
"vuex-router-sync": "^4.2.0"
}
}