generated from frontendweekly/emptyEleven
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 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
{
"name": "emptyEleven",
"version": "1.0.0",
"description": "This is my Eleventy starter kit which is almost empty",
"main": ".eleventy.js",
"scripts": {
"build": "cross-env ELEVENTY_ENV=production eleventy",
"build:clean": "rimraf dist/*",
"build:postcss": "postcss 11ty/_postcss/main.pcss -o 11ty/_includes/assets/styles/main.css --env production",
"build:production": "run-s build:clean build:postcss build",
"dev": "cross-env ELEVENTY_ENV=development eleventy --serve",
"start": "npm run dev",
"test": "jest",
"test:watch": "jest --watch",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand --watch"
},
"engines": {
"node": ">=14.15.0"
},
"keywords": [],
"author": "Yuya Saito <hello@studiomohawk.com> (https://github.com/studiomohawk)",
"license": "MIT",
"dependencies": {
"@11ty/eleventy": "^0.11.1",
"@11ty/eleventy-cache-assets": "^2.0.3",
"@11ty/eleventy-img": "^0.6.0",
"@11ty/eleventy-plugin-rss": "^1.0.9",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.0.4",
"@frontendweekly/eleventy-plugin-markdown": "^0.0.4",
"html-minifier": "^4.0.0",
"npm-run-all": "^4.1.5",
"toml": "^3.0.0",
"cross-env": "^7.0.3",
"rimraf": "^3.0.2",
"postcss": "^8.2.1",
"postcss-cli": "^8.3.1",
"postcss-import": "^14.0.0",
"postcss-load-config": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"autoprefixer": "^10.1.0",
"cssnano": "^4.1.10"
},
"devDependencies": {
"@frontendweekly/eslint-config-molle": "^0.0.1",
"@frontendweekly/jest-preset-molle": "^0.0.12",
"@frontendweekly/stylelint-config-molle": "^0.0.1",
"eslint": "^7.16.0",
"stylelint": "^13.8.0",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"husky": "^4.3.6",
"lint-staged": "^10.5.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/frontendweekly/emptyEleven.git"
},
"bugs": {
"url": "https://github.com/frontendweekly/emptyEleven/issues"
},
"homepage": "https://github.com/frontendweekly/emptyEleven#readme"
}