-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.75 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
{
"name": "talon",
"version": "1.0.0",
"private": true,
"main": "index.js",
"homepage": "https://github.com/Ghryphen/talon",
"repository": {
"type": "git",
"url": "git+https://github.com/Ghryphen/talon.git"
},
"bugs": {
"url": "https://github.com/Ghryphen/talon/issues"
},
"scripts": {
"start": "node app.js",
"test": "echo \"Error: no test specified\" && exit 1",
"css": "npm-run-all css-compile css-minify",
"css-compile": "sass --style expanded --source-map --embed-sources --no-error-css assets/scss:public/css/",
"css-minify": "npm-run-all --aggregate-output --parallel css-minify-*",
"css-minify-main": "cleancss -O1 --format breakWith=lf --with-rebase --source-map --source-map-inline-sources --output public/css/ --batch --batch-suffix \".min\" \"public/css/*.css\" \"!public/css/*.min.css\" \"!public/css/*rtl*.css\"",
"js": "npm-run-all js-minify",
"js-minify": "npm-run-all --aggregate-output --parallel js-minify-*",
"js-minify-standalone": "terser --compress passes=2 --mangle --comments \"/^!/\" --source-map \"content=node_modules/bootstrap/js/dist/js/bootstrap.js.map,includeSources,url=bootstrap.min.js.map\" --output public/js/bootstrap.min.js public/js/bootstrap.js",
"js-minify-standalone-esm": "terser --compress passes=2 --mangle --comments \"/^!/\" --source-map \"content=node_modules/bootstrap/js/dist/js/bootstrap.esm.js.map,includeSources,url=bootstrap.esm.min.js.map\" --output public/js/bootstrap.esm.min.js public/js/bootstrap.esm.js",
"js-minify-bundle": "terser --compress passes=2 --mangle --comments \"/^!/\" --source-map \"content=node_modules/bootstrap/js/dist/js/bootstrap.bundle.js.map,includeSources,url=bootstrap.bundle.min.js.map\" --output public/js/bootstrap.bundle.min.js public/js/bootstrap.bundle.js",
"watch": "npm-run-all --parallel watch-*",
"watch-css-main": "nodemon --watch assets/scss --ext scss --exec \"npm-run-all css\""
},
"author": "Ryan <[email protected]>",
"license": "ISC",
"description": "",
"keywords": [
"bootstrap",
"sass",
"css",
"javascript",
"hapi",
"sqlite3",
"handlebars",
"discord",
"twitch"
],
"dependencies": {
"@hapi/bell": "^12.3.0",
"@hapi/boom": "^10.0.0",
"@hapi/cookie": "^11.0.2",
"@hapi/hapi": "^20.2.2",
"@hapi/inert": "^6.0.5",
"@hapi/vision": "^6.1.0",
"axios": "^1.6.0",
"bootstrap": "^5.1.3",
"handlebars": "^4.7.7",
"joi": "^17.6.0",
"object-hash": "^3.0.0",
"sequelize": "^6.29.0",
"sqlite3": "^5.1.5"
},
"devDependencies": {
"@types/hapi": "^18.0.7",
"@types/hapi__vision": "^5.5.3",
"clean-css-cli": "^5.6.0",
"nodemon": "^2.0.20",
"npm-run-all": "^4.1.5",
"sass": "^1.51.0",
"terser": "^5.14.2"
}
}