-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
113 lines (113 loc) · 2.96 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
107
108
109
110
111
112
113
{
"name": "kian",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "npm-run-all --parallel serve:*",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"serve:backend": "nodemon --watch backend -e py,pyx backend/server.py",
"serve:frontend": "vue-cli-service serve",
"test:watch": "vue-cli-service test:unit --watch",
"test": "vue-cli-service test:unit"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run test"
}
},
"lint-staged": {
"linters": {
"*.{js}": [
"eslint --fix",
"git add"
],
"*.{ts, .vue}": [
"tslint --fix",
"git add"
]
},
"ignore": [
"**/*.min.js"
]
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.5.0",
"@types/node": "^10.12.12",
"@types/socket.io-client": "^1.4.32",
"base-64": "^0.1.0",
"bootstrap-vue": "^2.0.0-rc.11",
"codemirror": "^5.42.0",
"crc-32": "^1.2.0",
"fuzzysearch": "^1.0.3",
"hangul-js": "^0.2.5",
"jimp": "^0.6.0",
"jquery": "^3.3.1",
"left-pad": "^1.3.0",
"lru_map": "^0.3.3",
"markdown-it": "^8.4.2",
"markdown-it-katex": "^2.0.3",
"markdown-it-underline": "^1.0.1",
"nodemon": "^1.18.7",
"npm-run-all": "^4.1.5",
"socket.io-client": "^2.2.0",
"textversionjs": "^1.1.3",
"tslint": "^5.11.0",
"tslint-config-standard": "^8.0.1",
"turndown": "^5.0.1",
"turndown-plugin-gfm": "^1.0.2",
"typescript-debounce-decorator": "0.0.17",
"utf8": "^3.0.0",
"vue": "^2.5.17",
"vue-async-computed": "^3.5.0",
"vue-awesome": "^3.2.0",
"vue-class-component": "^6.3.2",
"vue-cookie-law": "^1.8.0",
"vue-loading-overlay": "^3.1.0",
"vue-localstorage": "^0.6.2",
"vue-property-decorator": "^7.2.0",
"vue-router": "^3.0.2",
"vue-router-layout": "^0.1.3",
"vue-simple-hotkey": "^0.1.5",
"vue-toasted": "^1.1.26",
"vuejs-datepicker": "^1.5.4",
"vuex": "^3.0.1",
"vuex-class": "^0.3.1"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"@vue/cli-plugin-babel": "^3.2.0",
"@vue/cli-plugin-eslint": "^3.2.1",
"@vue/cli-plugin-typescript": "^3.2.0",
"@vue/cli-plugin-unit-mocha": "^3.2.0",
"@vue/cli-service": "^3.2.0",
"@vue/eslint-config-standard": "^4.0.0",
"@vue/eslint-config-typescript": "^3.2.0",
"@vue/test-utils": "^1.0.0-beta.26",
"chai": "^4.2.0",
"husky": "^1.2.0",
"lint-staged": "^8.1.0",
"mocha": "^5.2.0",
"node-sass": "^4.10.0",
"sass-loader": "^7.1.0",
"typescript": "^3.2.1",
"vue-auto-routing": "^0.3.0",
"vue-cli-plugin-auto-routing": "^0.2.1",
"vue-cli-plugin-pug": "^1.0.7",
"vue-cli-plugin-unit-karma": "^0.5.0",
"vue-template-compiler": "^2.5.17"
},
"nodemonConfig": {
"execMap": {
"py": "python3"
},
"watch": [
"backend/"
],
"ignore": [
"backend/testdata"
],
"delay": "500"
}
}