-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.67 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.67 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
{
"name": "quillcms",
"version": "0.0.1",
"description": "A Content Management System build with Node.js, Express, Nuxt.js and MongoDB.",
"author": "ximolang",
"private": true,
"scripts": {
"dev": "backpack dev",
"build": "nuxt build && backpack build",
"start": "cross-env NODE_ENV=production node build/main.js",
"precommit": "npm run lint",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore ."
},
"dependencies": {
"axios": "^0.19.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"connect-mongo": "^3.1.1",
"cookie-parser": "^1.4.4",
"cross-env": "^6.0.3",
"dompurify": "^2.0.7",
"element-ui": "^2.12.0",
"express": "^4.17.1",
"express-session": "^1.17.0",
"form-data": "^2.5.1",
"highlight.js": "^9.15.10",
"jsdom": "^15.2.0",
"log4js": "^5.3.0",
"marked": "^0.7.0",
"mavon-editor": "^2.7.7",
"moment": "^2.24.0",
"mongoose": "^5.7.7",
"multer": "^1.4.2",
"nuxt": "^2.10.2",
"qiniu": "^7.2.2",
"request": "^2.88.0",
"shortid": "^2.2.15",
"source-map-support": "^0.5.16",
"validator": "^12.0.0",
"xss": "^1.0.6"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"babel-plugin-component": "^1.1.1",
"backpack-core": "^0.8.4",
"eslint": "^6.6.0",
"eslint-config-standard": "^14.1.0",
"eslint-loader": "^3.0.2",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^5.2.3",
"node-sass": "^4.13.0",
"sass-loader": "^8.0.0",
"vue-eslint-parser": "^6.0.4"
}
}