-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.41 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
{
"name": "opencooking",
"version": "0.1.0",
"description": "",
"scripts": {
"start": "rimraf ./out && npx @11ty/eleventy --serve",
"build": "rimraf ./out && cross-env NODE_ENV=production npx @11ty/eleventy",
"lint": "npm run lint:eslint && npm run lint:stylelint",
"lint:eslint": "eslint .",
"lint:stylelint": "stylelint 'src/**/*.css'",
"prettier:check": "prettier --check .",
"prettier:write": "prettier --write .",
"husky": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/feerzlay/opencooking.git"
},
"author": "Denis Yakshov",
"license": "MIT",
"bugs": {
"url": "https://github.com/feerzlay/opencooking/issues"
},
"homepage": "https://github.com/feerzlay/opencooking#readme",
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"prettier": "^2.7.1",
"stylelint": "^14.10.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-order": "^5.0.0",
"stylelint-prettier": "^2.0.0"
},
"dependencies": {
"@11ty/eleventy": "2.0.0-canary.15",
"@11ty/eleventy-img": "^2.0.1",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"cross-env": "^7.0.3",
"html-minifier": "^4.0.0",
"rimraf": "^3.0.2",
"tinyduration": "^3.2.2"
}
}