-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 3.05 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
{
"name": "blog-me",
"version": "1.0.0",
"description": "Blog management",
"main": "index.js",
"engines": {
"node": ">=12.13.1",
"npm": ">=6.13.4"
},
"scripts": {
"check-engines": "check-engine",
"lint": "eslint --ext .vue --ext .js --ext .json src && jsinspect src",
"build": "concurrently --kill-others-on-fail \"webpack --config src/ui/webpack.config.js --mode production\" \"webpack --config src/server/webpack.config.js --mode production\"",
"ui": "LOGGING=true webpack-dev-server --config src/ui/webpack.config.js --mode development --devtool inline-source-map --hot",
"server": "NODE_LOGGING=true nodemon --exec babel-node src/server/index.js",
"start": "NODE_ENV=development concurrently --raw --kill-others-on-fail \"npm run server\" \"npm run ui\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ioannis-Karasavvaidis/blog-me.git"
},
"author": "Ioannis Karasavvaidis ([email protected])",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/Ioannis-Karasavvaidis/blog-me/issues"
},
"homepage": "https://github.com/Ioannis-Karasavvaidis/blog-me#readme",
"devDependencies": {
"@babel/cli": "^7.24.7",
"@babel/core": "^7.8.4",
"@babel/node": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-module-resolver": "^4.0.0",
"chai": "^4.2.0",
"check-engine": "^1.8.1",
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^5.1.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.4.2",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-babel": "^9.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-chai-friendly": "^0.5.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-import-helpers": "^1.0.2",
"eslint-plugin-json": "^2.0.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"html-webpack-plugin": "^5.5.0",
"node-sass": "^9.0.0",
"nodemon": "^2.0.22",
"prettier": "^1.19.1",
"resolve-url-loader": "^5.0.0",
"sass-loader": "^8.0.2",
"sinon": "^9.0.0",
"style-loader": "^1.1.3",
"terser-webpack-plugin": "^2.3.5",
"vue-loader": "^15.9.0",
"vue-template-compiler": "^2.6.11",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"dependencies": {
"@panter/vue-i18next": "^0.15.2",
"body-parser": "^1.20.3",
"express": "^4.21.0",
"express-handlebars": "^5.3.1",
"i18next": "^19.3.1",
"i18next-browser-languagedetector": "^4.0.1",
"i18next-express-middleware": "^1.9.1",
"i18next-node-fs-backend": "^2.1.3",
"i18next-xhr-backend": "^3.2.2",
"keen-ui": "^1.2.1",
"lodash": "^4.17.21",
"vue": "^2.6.11",
"vue-resource": "^1.5.3",
"vue-router": "^3.1.5",
"vuex": "^3.1.2",
"vuex-router-sync": "^5.0.0"
}
}