-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
74 lines (74 loc) · 2.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
{
"name": "qat",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "run-p -rl watch-app watch-src",
"watch-app": "set NODE_ENV=development&& nodemon ./app.js",
"watch-src": "webpack-dev-server --config webpack.dev.config.js",
"build": "set NODE_ENV=production&& webpack --mode production --config webpack.prod.config.js",
"prod": "set NODE_ENV=production&& node ./app.js",
"lint": "eslint . --ext .js,.vue",
"tsc": "tsc"
},
"dependencies": {
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.0",
"@fortawesome/fontawesome-svg-core": "^1.3.0",
"@fortawesome/free-regular-svg-icons": "^6.0.0",
"@fortawesome/free-solid-svg-icons": "^6.0.0",
"@fortawesome/vue-fontawesome": "^2.0.6",
"axios": "^0.21.4",
"babel-loader": "^8.1.0",
"babel-plugin-transform-regenerator": "^6.26.0",
"bootstrap": "^4.5.2",
"cheerio": "^1.0.0-rc.10",
"connect-mongo": "^3.2.0",
"cookie-parser": "^1.4.5",
"core-js": "^3.6.5",
"css-loader": "^6.7.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"express-session": "^1.17.1",
"file-loader": "^6.2.0",
"hbs": "^4.1.2",
"html-webpack-plugin": "^5.5.0",
"markdown-it": "^13.0.1",
"markdown-it-color": "^2.1.1",
"markdown-it-video": "^0.6.3",
"moment": "^2.29.3",
"mongoose": "^5.13.7",
"morgan": "~1.9.0",
"node-cron": "^2.0.3",
"sass": "^1.58.3",
"vue": "^2.6.12",
"vue-loader": "^15.9.3",
"vue-router": "^3.4.3",
"vue-template-compiler": "^2.6.12",
"vuex": "^3.5.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"devDependencies": {
"@types/bootstrap": "^4.5.0",
"@types/jquery": "^3.5.1",
"@types/markdown-it": "^12.0.1",
"@types/mongoose": "^5.7.36",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-plugin-vue": "^6.2.2",
"mini-css-extract-plugin": "^2.7.2",
"nodemon": "^2.0.3",
"npm-run-all": "^4.1.5",
"sass-loader": "^8.0.2",
"style-loader": "^1.2.1",
"typescript": "^3.9.7",
"webpack-dev-server": "^4.11.1"
},
"nodemonConfig": {
"ignore": [
"public/*",
"src/*"
]
}
}