2018-09-02 16:04:44 +03:00
|
|
|
{
|
2018-11-23 10:56:53 +03:00
|
|
|
"name": "aelve-guide",
|
2018-09-02 23:26:15 +03:00
|
|
|
"version": "1.0.0",
|
2018-11-21 13:54:54 +03:00
|
|
|
"description": "Aelve Guide",
|
2018-09-02 23:26:15 +03:00
|
|
|
"private": true,
|
2018-09-02 16:04:44 +03:00
|
|
|
"scripts": {
|
2019-04-22 23:48:21 +03:00
|
|
|
"dev": "cross-env NODE_ENV=development nodemon",
|
2019-04-18 00:52:43 +03:00
|
|
|
"build": "cross-env NODE_ENV=production rimraf dist && npm run build:src && copyfiles index.html package.json dist/src && copyfiles package.json dist && tsc -p ./prod.tsconfig.json --outDir dist",
|
|
|
|
"build:src": "concurrently \"npm run build:client\" \"npm run build:server\"",
|
|
|
|
"build:client": "cross-env NODE_ENV=production webpack --config build/webpack.client.conf.js --hide-modules",
|
|
|
|
"build:server": "cross-env NODE_ENV=production webpack --config build/webpack.server.conf.js --hide-modules",
|
2019-01-02 16:07:52 +03:00
|
|
|
"test": "testcafe chrome client/tests/*.test.js --app \"npm run start:dev\" --app-init-delay 10000"
|
2018-09-02 16:04:44 +03:00
|
|
|
},
|
2019-04-18 00:52:43 +03:00
|
|
|
"nodemonConfig": {
|
|
|
|
"ext": "ts",
|
|
|
|
"exec": "ts-node -O {\\\"module\\\":\\\"commonjs\\\"} ./server.ts",
|
|
|
|
"watch": [
|
|
|
|
"build/**/*.js",
|
|
|
|
"build/**/*.ts",
|
|
|
|
"config.js"
|
|
|
|
],
|
|
|
|
"ignore": [
|
2019-04-22 23:48:21 +03:00
|
|
|
"src",
|
|
|
|
"src/**/*.ts",
|
|
|
|
"src/**/*.js",
|
2019-04-18 00:52:43 +03:00
|
|
|
"src/**/*.spec.ts",
|
|
|
|
"src/**/*.d.ts"
|
|
|
|
]
|
|
|
|
},
|
2018-09-02 16:04:44 +03:00
|
|
|
"dependencies": {
|
2019-04-18 00:52:43 +03:00
|
|
|
"@fortawesome/fontawesome-svg-core": "^1.2.17",
|
2019-05-28 19:13:44 +03:00
|
|
|
"@fortawesome/free-regular-svg-icons": "^5.8.2",
|
2019-04-18 00:52:43 +03:00
|
|
|
"@fortawesome/free-solid-svg-icons": "^5.8.1",
|
|
|
|
"@fortawesome/vue-fontawesome": "^0.1.6",
|
2019-06-03 13:55:30 +03:00
|
|
|
"axios": "^0.18.1",
|
2019-04-19 14:11:28 +03:00
|
|
|
"easymde": "^2.6.0",
|
2019-04-18 00:52:43 +03:00
|
|
|
"koa": "^2.7.0",
|
|
|
|
"koa-bodyparser": "^4.2.1",
|
|
|
|
"koa-mount": "^4.0.0",
|
2018-09-02 23:26:15 +03:00
|
|
|
"koa-proxy": "^0.9.0",
|
2019-04-18 00:52:43 +03:00
|
|
|
"koa-static": "^5.0.0",
|
|
|
|
"lodash": "^4.17.11",
|
|
|
|
"moment": "^2.24.0",
|
|
|
|
"normalize-url": "^4.3.0",
|
2019-02-10 15:00:50 +03:00
|
|
|
"nprogress": "^0.2.0",
|
2019-04-18 00:52:43 +03:00
|
|
|
"vue": "^2.6.10",
|
|
|
|
"vue-class-component": "^7.0.2",
|
|
|
|
"vue-mixin-decorator": "^1.1.1",
|
|
|
|
"vue-property-decorator": "^8.1.0",
|
|
|
|
"vue-router": "^3.0.4",
|
|
|
|
"vue-server-renderer": "^2.6.10",
|
|
|
|
"vuetify": "^1.5.11",
|
|
|
|
"vuex": "^3.1.0",
|
2018-09-02 23:26:15 +03:00
|
|
|
"vuex-router-sync": "^5.0.0"
|
2018-09-02 16:04:44 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2019-04-18 00:52:43 +03:00
|
|
|
"@babel/core": "^7.4.3",
|
2019-04-19 14:11:28 +03:00
|
|
|
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
|
|
|
|
"@babel/plugin-transform-runtime": "^7.4.3",
|
|
|
|
"@babel/preset-env": "^7.4.3",
|
2019-04-18 00:52:43 +03:00
|
|
|
"@vue/preload-webpack-plugin": "^1.1.0",
|
|
|
|
"autoprefixer": "^9.5.1",
|
2019-02-19 23:24:07 +03:00
|
|
|
"babel-loader": "^8.0.5",
|
2019-04-18 00:52:43 +03:00
|
|
|
"concurrently": "^4.1.0",
|
|
|
|
"copyfiles": "^2.1.0",
|
2018-09-02 23:26:15 +03:00
|
|
|
"cross-env": "^5.2.0",
|
2019-04-18 00:52:43 +03:00
|
|
|
"css-loader": "^2.1.1",
|
|
|
|
"file-loader": "^3.0.1",
|
|
|
|
"fork-ts-checker-webpack-plugin": "^1.0.2",
|
2018-09-02 23:26:15 +03:00
|
|
|
"friendly-errors-webpack-plugin": "^1.7.0",
|
2019-04-18 00:52:43 +03:00
|
|
|
"koa-webpack": "^5.2.2",
|
2018-09-02 23:26:15 +03:00
|
|
|
"memory-fs": "^0.4.1",
|
2019-04-18 00:52:43 +03:00
|
|
|
"nodemon": "^1.18.11",
|
|
|
|
"postcss-loader": "^3.0.0",
|
2019-05-20 22:19:38 +03:00
|
|
|
"postcss-preset-env": "^6.6.0",
|
|
|
|
"precss": "^4.0.0",
|
2019-04-18 00:52:43 +03:00
|
|
|
"rimraf": "^2.6.3",
|
|
|
|
"testcafe": "^1.1.2",
|
|
|
|
"testcafe-vue-selectors": "^3.1.0",
|
|
|
|
"ts-loader": "^5.3.3",
|
|
|
|
"ts-node": "^8.0.3",
|
|
|
|
"tslint": "^5.15.0",
|
|
|
|
"typescript": "^3.4.3",
|
|
|
|
"url-loader": "^1.1.2",
|
|
|
|
"vue-loader": "^15.7.0",
|
2019-02-19 23:24:07 +03:00
|
|
|
"vue-style-loader": "^4.1.2",
|
2019-04-18 00:52:43 +03:00
|
|
|
"vue-template-compiler": "^2.6.10",
|
|
|
|
"webpack": "^4.30.0",
|
|
|
|
"webpack-cli": "^3.3.0",
|
|
|
|
"webpack-merge": "^4.2.1",
|
|
|
|
"webpack-node-externals": "^1.7.2",
|
|
|
|
"webpackbar": "^3.1.5"
|
2018-09-02 16:04:44 +03:00
|
|
|
}
|
|
|
|
}
|