-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.25 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
{
"name": "empty-eleven",
"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 NODE_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 NODE_ENV=development eleventy --serve",
"dev:netlify": "cross-env ELEVENTY_ENV=development NODE_ENV=development netlify dev",
"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.12.1",
"@11ty/eleventy-cache-assets": "^2.1.0",
"@11ty/eleventy-img": "^0.8.3",
"@11ty/eleventy-navigation": "^0.2.0",
"@11ty/eleventy-plugin-rss": "^1.1.1",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.1.0",
"@frontendweekly/eleventy-plugin-markdown": "^0.1.0",
"autoprefixer": "^10.2.5",
"cross-env": "^7.0.3",
"cssnano": "^5.0.2",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.13",
"postcss-cli": "^8.3.1",
"postcss-import": "^14.0.1",
"postcss-load-config": "^3.0.1",
"postcss-preset-env": "^6.7.0",
"rimraf": "^3.0.2",
"toml": "^3.0.0"
},
"devDependencies": {
"@frontendweekly/eslint-config-molle": "^0.0.6",
"@frontendweekly/jest-preset-molle": "^0.0.20",
"@frontendweekly/stylelint-config-molle": "^0.0.7",
"eslint": "^7.25.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"stylelint": "^13.13.1",
"netlify-cli": "^3.24.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"
}