-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 2.86 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
{
"version": "1.0.0",
"description": "dev documents",
"author": "김인수",
"private": true,
"scripts": {
"dev": "nuxt-ts",
"build": "nuxt-ts build",
"start": "nuxt-ts start",
"generate": "nuxt-ts generate",
"lint": "eslint --ext .ts,.js,.vue --ignore-path .gitignore .",
"lintfix": "eslint --fix --ext .ts,.js,.vue --ignore-path .gitignore .",
"test": "jest"
},
"lint-staged": {
"*.{ts,js,vue}": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@nuxt/typescript-runtime": "^0.1.5",
"@nuxtjs/axios": "^5.13.6",
"@nuxtjs/proxy": "^1.3.3",
"@nuxtjs/router": "^1.5.0",
"@nuxtjs/style-resources": "^1.0.0",
"@tui-nuxt/editor": "^1.0.0-beta.3",
"@types/dom-inputevent": "^1.0.5",
"body-parser": "^1.19.0",
"child_process": "^1.0.2",
"cookie-parser": "^1.4.4",
"cookie-universal-nuxt": "^2.1.2",
"cors": "^2.8.5",
"crypto-js": "^4.2.0",
"diff2html": "^2.12.1",
"dotenv": "^8.1.0",
"dragula": "^3.7.2",
"express": "^4.21.2",
"fs": "0.0.1-security",
"gitlab": "^11.0.2",
"http-errors": "^1.7.3",
"liquor-tree": "^0.2.68",
"lodash": "^4.17.21",
"marked": "^4.0.10",
"mongoose": "^6.13.5",
"mongoose-auto-increment": "^5.0.1",
"morgan": "^1.9.1",
"multer": "^1.4.2",
"nuxt": "^3.11.2",
"nuxt-property-decorator": "^2.4.0",
"pdf-image": "^2.0.0",
"pdfobject": "^2.1.1",
"plyr": "^3.5.6",
"read-file": "^0.2.0",
"remove-markdown": "^0.3.0",
"request": "^2.88.0",
"request-promise": "^4.2.5",
"request-promise-native": "^1.0.8",
"turndown": "^7.2.0",
"vue-axios": "^2.1.5",
"vue-draggable": "^2.0.4",
"vue-js-modal": "^1.3.31",
"vuedraggable": "^2.23.2",
"vuex": "^3.1.1",
"vuex-persist": "^2.2.0"
},
"devDependencies": {
"@nuxt/typescript-build": "^3.0.0",
"@nuxtjs/dotenv": "^1.4.1",
"@nuxtjs/eslint-config": "^1.0.1",
"@nuxtjs/eslint-config-typescript": "^0.1.2",
"@nuxtjs/eslint-module": "^1.0.0",
"@types/pdfobject": "^2.0.6",
"@vue/test-utils": "^1.0.0-beta.27",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"bcrypt": "^5.1.1",
"eslint": "^6.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-nuxt": ">=0.4.2",
"eslint-plugin-prettier": "^3.0.1",
"extract-text-webpack-plugin": "^2.1.2",
"husky": "^2.6.0",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"node-sass": "^9.0.0",
"prettier": "^1.16.4",
"sass-loader": "^8.0.0",
"stylelint": "^10.1.0",
"stylelint-config-recommended": "^2.2.0",
"stylelint-scss": "^3.10.1",
"stylelint-webpack-plugin": "^0.10.5",
"vue-jest": "^4.0.0-0"
},
"browserslist": [
"last 2 version",
"android >= 5",
"IE 11"
],
"_moduleAliases": {
"~/*": "./app/*",
"@/*": "./app/*"
}
}