-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.18 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
{
"name": "task-manager",
"description": "Main server for the task-manager",
"version": "0.1.0",
"private": true,
"scripts": {
"run": "nodemon ./src/server/bin/server.js",
"debug": "DEBUG=* nodemon ./src/server/bin/server.js",
"start": "grunt && nodemon ./build/server/bin/server.js"
},
"dependencies": {
"child-process-async": "^1.0.1",
"debug": "^2.6.9",
"dotenv": "^6.0.0",
"express": "~4.16.0",
"fs-extra": "^7.0.0",
"http-errors": "~1.6.2",
"http-status-codes": "^1.3.0",
"ip": "^1.1.5",
"luxon": "^1.4.3",
"mongodb": "^3.1.0",
"mongoose": "^5.2.4",
"morgan": "~1.9.0",
"pty.js": "^0.3.1",
"request": "^2.88.0",
"request-progress": "^3.0.0",
"uuid": "^3.3.2",
"validator": "^10.4.0",
"vue-datetime": "^1.0.0-beta.6",
"vueify": "^9.4.1"
},
"devDependencies": {
"axios": "^0.18.0",
"bootbox": "^4.4.0",
"bootstrap": "^4.1.3",
"bootstrap-notify": "^3.1.3",
"docsify": "^4.7.1",
"epic-spinners": "^1.0.3",
"eslint-plugin-vue": "^4.7.1",
"form-data": "^2.3.2",
"grunt": "^1.0.3",
"grunt-browserify": "^5.3.0",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-less": "^2.0.0",
"grunt-eslint": "^21.0.0",
"jquery": "^3.3.1",
"lodash": "^4.17.10",
"moment": "^2.22.2",
"nodemon": "^1.18.3",
"popper.js": "^1.14.3",
"vue": "^2.5.16",
"vue-resource": "^1.5.1",
"vue-router": "^3.0.1",
"vuex": "^3.0.1",
"xterm": "^3.7.0"
},
"eslintConfig": {
"env": {
"es6": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "script"
},
"plugins": [],
"extends": [
"eslint:recommended",
"plugin:vue/essential"
],
"rules": {
"indent": [
"error",
"tab",
{
"SwitchCase": 1
}
],
"linebreak-style": [
"error",
"unix"
],
"no-console": [
"warn"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
],
"require-await": [
"error"
]
}
}
}