-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.14 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
{
"name": "seo.zmoki.xyz",
"version": "1.0.0",
"description": "Source code of the seo.zmoki.xyz website",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rimraf dist",
"eleventy:build": "ELEVENTY_ENV=production eleventy",
"eleventy:serve": "eleventy --serve",
"css:build": "NODE_ENV=production postcss src/styles.css -o dist/styles.css",
"css:watch": "postcss src/styles.css -o dist/styles.css --watch",
"build": "npm run clean && npm run eleventy:build && npm run css:build",
"serve": "npm run clean && npm run eleventy:serve & npm run css:watch"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Zmoki/seo.zmoki.xyz.git"
},
"author": "Zarema Khalilova",
"license": "MIT",
"bugs": {
"url": "https://github.com/Zmoki/seo.zmoki.xyz/issues"
},
"homepage": "https://github.com/Zmoki/seo.zmoki.xyz#readme",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"autoprefixer": "^10.4.20",
"cssnano": "^7.0.6",
"html-minifier": "^4.0.0",
"postcss": "^8.4.47",
"postcss-cli": "^11.0.0",
"rimraf": "^6.0.1"
}
}