-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
121 lines (121 loc) · 3.06 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
114
115
116
117
118
119
120
121
{
"name": "volgactf-qualifier-frontend",
"version": "4.0.0",
"description": "VolgaCTF Qualifier frontend",
"main": "index.js",
"scripts": {
"build": "gulp",
"lint": "standard --verbose 'src/**/*.js' | snazzy"
},
"repository": {
"type": "git",
"url": "https://github.com/VolgaCTF/volgactf-qualifier-frontend.git"
},
"author": "VolgaCTF",
"license": "MIT",
"bugs": {
"url": "https://github.com/VolgaCTF/VolgaCTF-qualifier-frontend/issues"
},
"dependencies": {
"bootstrap": "~4.6.1",
"bootstrap-select": "^1.13.18",
"clipboard": "~2.0.0",
"jquery": "~3.6.0",
"jquery-form": "~3.50.0",
"markdown-it": "~12.3.2",
"markdown-it-emoji": "~2.0.0",
"markdown-it-ins": "~3.0.1",
"markdown-it-link-attributes": "~4.0.0",
"markdown-it-mark": "~3.0.1",
"markdown-it-sub": "~1.0.0",
"markdown-it-sup": "~1.0.0",
"moment": "~2.20.1",
"open-iconic": "~1.1.1",
"parsleyjs": "~2.8.1",
"popper.js": "~1.16.1",
"tempusdominus-bootstrap-4": "~5.1.0",
"twemoji": "^14.0.2",
"underscore": "~1.13.2",
"url-search-params": "~0.10.0",
"wolfy87-eventemitter": "~4.3.0"
},
"devDependencies": {
"async": "~2.6.0",
"axios": "~0.21.4",
"babel-eslint": "~10.1.0",
"babel-preset-es2015": "~6.24.1",
"babelify": "~7.3.0",
"browserify": "~13.0.0",
"browserify-shim": "~3.8.12",
"del": "~1.2.1",
"eslint": "~7.18.0",
"gulp": "~4.0.2",
"gulp-brotli": "~1.2.1",
"gulp-clean-css": "~4.3.0",
"gulp-concat-css": "~3.1.0",
"gulp-filter": "~5.1.0",
"gulp-if": "~2.0.2",
"gulp-include": "~2.4.1",
"gulp-mustache": "~5.0.0",
"gulp-plumber": "~1.2.1",
"gulp-remote-src": "~0.4.4",
"gulp-rev": "~9.0.0",
"gulp-sass": "~5.1.0",
"gulp-uglify": "~3.0.2",
"gulp-zopfli-green": "~4.0.0",
"js-yaml": "~3.14.1",
"sass": "~1.49.9",
"snazzy": "~9.0.0",
"standard": "~16.0.4",
"tmp": "~0.2.1",
"vinyl-buffer": "~1.0.1",
"vinyl-source-stream": "~2.0.0"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browser": {
"bootstrap": "./node_modules/bootstrap/dist/js/bootstrap.js",
"popper": "./node_modules/popper.js/dist/umd/popper.js",
"parsley": "./node_modules/parsleyjs/dist/parsley.js",
"jquery-form": "./node_modules/jquery-form/jquery.form.js",
"tempusdominius-bootstrap-4": "./node_modules/tempusdominus-bootstrap-4/build/js/tempusdominus-bootstrap-4.js",
"clipboard": "./node_modules/clipboard/dist/clipboard.js"
},
"browserify-shim": {
"jquery": {
"exports": "$"
},
"bootstrap": {
"depends": [
"jquery:jQuery",
"popper.js:popper"
]
},
"parsley": {
"depends": [
"jquery"
]
},
"jquery-form": {
"depends": [
"jquery"
]
},
"tempusdominius-bootstrap-4": {
"depends": [
"jquery",
"bootstrap",
"moment:moment"
]
},
"clipboard": {
"exports": "ClipboardJS"
}
},
"standard": {
"parser": "babel-eslint"
}
}