generated from frontendweekly/emptyEleven
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.94 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
{
"name": "demoventy",
"version": "1.0.0",
"description": "An Eleventy starter kit for demos",
"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",
"prepare": "husky install",
"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": ["eleventy", "demo"],
"author": "Yuya Saito <hello@studiomohawk.com> (https://github.com/studiomohawk)",
"license": "MIT",
"dependencies": {
"@11ty/eleventy": "^0.12.1",
"@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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/frontendweekly/demoventy.git"
},
"bugs": {
"url": "https://github.com/frontendweekly/demoventy/issues"
},
"homepage": "https://github.com/frontendweekly/demoventy#readme"
}