-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
73 lines (73 loc) · 2.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
{
"name": "at-the-wall",
"version": "1.0.0",
"description": "A Game of Thrones scene coded in HTML and CSS",
"keywords": [
"GoT",
"Game of Thrones",
"Jon Snow",
"White Walker",
"Pure CSS",
"CSS drawing"
],
"homepage": "https://at-the-wall.atanas.info/",
"bugs": {
"url": "https://github.com/scriptex/at-the-wall/issues",
"email": "hi@atanas.info"
},
"license": "MIT",
"author": "Atanas Atanasov <hi@atanas.info> (https://atanas.info)",
"funding": "https://github.com/sponsors/scriptex",
"repository": {
"type": "git",
"url": "github:scriptex/at-the-wall"
},
"scripts": {
"build": "webpack --mode=production",
"start": "webpack --watch --mode=development",
"optisize": "optisize --src=\"./assets/images\"",
"html": "php index.php > index.html",
"critical": "critical index.html > assets/dist/critical.css",
"rm-html": "rm index.html",
"html-min": "html-minifier index.html --collapse-whitespace -o index.html",
"pwa": "create-pwa --icon=\"./assets/images/favicon/icon.png\" --launch=\"./assets/images/favicon/launch.png\"",
"prod": "yarn rm-html && yarn html && yarn html-min && yarn build && yarn critical"
},
"dependencies": {
"html-head-component": "1.2.1",
"scriptex-socials": "1.8.0"
},
"devDependencies": {
"@three11/optisize": "3.0.1",
"autoprefixer": "10.4.20",
"browser-sync": "3.0.3",
"browser-sync-webpack-plugin": "2.3.0",
"browserslist": "4.24.3",
"create-pwa": "2.7.0",
"critical": "7.2.1",
"css-loader": "7.1.2",
"cssnano": "7.0.6",
"html-minifier": "4.0.0",
"mini-css-extract-plugin": "2.9.2",
"node-sass-magic-importer": "5.3.3",
"postcss": "8.4.49",
"postcss-easy-import": "4.0.0",
"postcss-flexbugs-fixes": "5.0.2",
"postcss-loader": "8.1.1",
"postcss-merge-rules": "7.0.4",
"postcss-normalize": "13.0.1",
"postcss-url": "10.1.3",
"postcss-utilities": "0.8.4",
"postcss-watch-folder": "2.0.0",
"sass": "1.83.0",
"sass-loader": "16.0.4",
"webpack": "5.97.1",
"webpack-cli": "5.1.4",
"yargs": "17.7.2"
},
"private": true,
"browserslist": [
"> 1%",
"last 2 versions"
]
}