-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.74 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
{
"license": "MIT",
"name": "kirillunlimited.com",
"repository": {
"type": "git",
"url": "https://github.com/kirillunlimited/kirillunlimited.com"
},
"scripts": {
"clean": "npx shx rm -rf ./dist",
"dev": "NODE_ENV=development npm-run-all clean --parallel dev:*",
"dev:webpack": "webpack --watch",
"dev:eleventy": "eleventy --serve",
"speedlify-webhook": "curl -X POST -d {} https://api.netlify.com/build_hooks/643ed54a77f1f2005d379419",
"build": "NODE_ENV=production npm-run-all clean build:*",
"build:assets": "webpack --mode production",
"build:site": "eleventy",
"deploy": "npm-run-all build speedlify-webhook",
"analyze": "NODE_ENV=production & DEBUG=true npm-run-all clean build:*"
},
"author": "Kirill Ivanov",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-img": "^2.0.1",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^4.2.0",
"@babel/core": "^7.18.5",
"@babel/preset-env": "^7.18.2",
"@sindresorhus/slugify": "1.1.2",
"babel-loader": "^8.2.5",
"css-loader": "^6.7.1",
"cssnano-webpack-plugin": "^1.0.3",
"html-minifier": "^4.0.0",
"linkedom": "^0.16.1",
"markdown-it": "^12.3.2",
"markdown-it-attrs": "^4.1.4",
"mini-css-extract-plugin": "^2.6.1",
"npm-run-all": "^4.1.5",
"outdent": "^0.8.0",
"postcss": "^8.4.14",
"postcss-loader": "^7.0.0",
"postcss-preset-env": "^7.7.1",
"prettier": "^2.7.1",
"webpack": "^5.73.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.10.0",
"webpack-manifest-plugin": "^4.0.2",
"webpack-remove-empty-scripts": "^0.8.1"
},
"dependencies": {
"normalize.css": "^8.0.1",
"speedlify-score": "^2.0.2"
}
}