-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.99 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 3.99 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
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
{
"name": "myntui",
"version": "1.0.0",
"description": "MyntUI - Webinterface for Mynt Trading Bot",
"homepage": "https://github.com/LORDofDOOM/MyntUI",
"license": "MIT",
"author": {
"name": "Thiemo Borger",
"url": "https://github.com/LORDofDOOM"
},
"contributors": [
{
"name": "Steven Thewissen",
"url": "https://github.com/sthewissen"
}
],
"main": "wwwroot/index.html",
"scripts": {
"build": "npm-run-all css js build-vendors",
"build-html": "npm-run-all css js build-clean build-copy build-vendors",
"build-clean": "node node_modules/rimraf/rimraf dist",
"build-copy": "copyfiles -a -e \"wwwroot/scss/**/*\" -u 1 \"wwwroot/**/*\" dist/",
"build-vendors": "node build/vendors.js",
"css": "npm-run-all --parallel css-compile* --sequential css-prefix css-minify*",
"css-compile": "node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 wwwroot/scss/style.scss wwwroot/css/style.css",
"css-compile-vendors": "node build/vendors-sass.js",
"css-lint": "stylelint --config build/.stylelintrc --syntax scss \"wwwroot/scss/**/*.scss\"",
"css-minify": "node node_modules/clean-css-cli/bin/cleancss --level 1 --source-map --source-map-inline-sources --output wwwroot/css/style.min.css wwwroot/css/style.css",
"css-prefix": "postcss --config build/postcss.config.js --replace \"wwwroot/css/*.css\" \"!wwwroot/css/*.min.css\"",
"js": "npm-run-all --parallel js-compile* js-lint*",
"js-compile": "node node_modules/cross-env/dist/bin/cross-env PLUGINS=true node_modules/@babel/cli/bin/babel.js wwwroot/js/src/ --out-dir wwwroot/js/ --source-maps",
"js-lint": "eslint wwwroot/js/src",
"localhost": "browser-sync start --server \"./wwwroot\" --serveStatic \"./\" --files \"!./wwwroot/js/src/**/*, ./wwwroot/**/*, !./wwwroot/scss/**/*\"",
"localhost-dist": "browser-sync start --server \"./dist\"",
"release-version": "node build/change-version.js",
"serve": "npm-run-all --parallel localhost watch-css watch-js",
"watch-css": "nodemon --ignore dist/ -e scss -x \"npm run css\"",
"watch-js": "nodemon --watch wwwroot/js/src/ -x \"npm run js\""
},
"dependencies": {
"@aspnet/signalr": "^1.0.0",
"@coreui/coreui": "git://github.com/LORDofDOOM/coreui.git",
"@coreui/coreui-plugin-chartjs-custom-tooltips": "1.2.0",
"@coreui/icons": "^0.3.0",
"@fortawesome/fontawesome-free-webfonts": "^1.0.9",
"bootstrap": "4.1.1",
"chart.js": "^2.7.2",
"flag-icon-css": "3.0.0",
"jquery": "3.3.1",
"jquery-validation": "^1.17.0",
"jquery-validation-unobtrusive": "^3.2.10",
"moment": "^2.22.2",
"pace-progress": "1.0.2",
"perfect-scrollbar": "^1.3.0",
"popper.js": "1.14.3",
"qrcodejs2": "0.0.2",
"simple-line-icons": "2.4.1",
"vue": "^2.5.16"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.46",
"@babel/core": "^7.0.0-beta.46",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.46",
"@babel/preset-env": "^7.0.0-beta.46",
"autoprefixer": "^8.6.2",
"babel-eslint": "^8.2.3",
"babel-plugin-transform-es2015-modules-strip": "^0.1.1",
"browser-sync": "2.24.4",
"chalk": "^2.4.1",
"clean-css-cli": "^4.1.11",
"copyfiles": "^2.0.0",
"cross-env": "^5.1.4",
"eslint": "^4.19.1",
"eslint-plugin-compat": "^2.4.0",
"foreach-cli": "^1.8.0",
"globule": "^1.2.1",
"node-glob": "^1.2.0",
"node-sass": "^4.9.0",
"nodemon": "^1.17.4",
"npm-run-all": "^4.1.3",
"postcss-cli": "^5.0.0",
"rimraf": "^2.6.2",
"shelljs": "^0.8.1",
"stylelint": "^9.2.1",
"stylelint-config-recommended-scss": "^3.2.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-order": "^0.8.1",
"stylelint-scss": "^3.1.0"
},
"engines": {
"node": ">=6"
},
"browserslist": [
"last 1 major version",
">= 1%",
"Chrome >= 45",
"Firefox >= 38",
"Edge >= 12",
"Explorer >= 10",
"iOS >= 9",
"Safari >= 9",
"Android >= 4.4",
"Opera >= 30"
]
}