-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 2.57 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
66
67
68
69
{
"name": "eleventy-packages",
"private": true,
"description": "Group of eleventy plugins.",
"scripts": {
"build:common": "npm run build -w @eleventy-packages/common",
"build:image": "npm run build -w eleventy-shortcode-image",
"build:workbox": "npm run build -w eleventy-plugin-workbox",
"build:styles": "npm run build -w eleventy-plugin-styles",
"build:scripts": "npm run build -w eleventy-plugin-scripts",
"build:icons": "npm run build -w eleventy-plugin-pwa-icons",
"build:compress": "npm run build -w eleventy-plugin-compress",
"build:cloudflare-image": "npm run build -w eleventy-plugin-cloudflare-image-resizing",
"build:kickin": "npm run build -w kickin",
"prebuild": "npm run build:common",
"build": "npm run build:image && npm run build:workbox && npm run build:styles && npm run build:scripts && npm run build:icons && npm run build:compress && npm run build:cloudflare-image && npm run build:kickin",
"test": "jest",
"prepare": "husky install",
"release:image": "npm run release -w eleventy-shortcode-image",
"release:workbox": "npm run release -w eleventy-plugin-workbox",
"release:styles": "npm run release -w eleventy-plugin-styles",
"release:scripts": "npm run release -w eleventy-plugin-scripts",
"release:icons": "npm run release -w eleventy-plugin-pwa-icons",
"release:compress": "npm run release -w eleventy-plugin-compress",
"release:cloudflare-image": "npm run release -w eleventy-plugin-cloudflare-image-resizing",
"release:kickin": "npm run release -w kickin",
"format": "prettier . --write"
},
"keywords": [],
"author": "Kapelianovych Yevhen",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-sucrase": "^4.0.4",
"@types/cssnano": "^5.1.0",
"@types/debug": "^4.1.7",
"@types/jest": "^28.1.6",
"@types/mock-fs": "^4.13.1",
"@types/node": "^18.6.1",
"@types/sass": "^1.43.1",
"@types/semver": "^7.3.10",
"@types/svgo": "^2.6.3",
"@types/tar": "^6.1.1",
"@types/workbox-build": "^5.0.1",
"cpy-cli": "^3.1.1",
"debug": "^4.3.4",
"husky": "^7.0.4",
"jest": "^28.1.3",
"mock-fs": "^5.1.4",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"rollup": "^2.77.2",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^28.0.7",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
},
"dependencies": {
"@fluss/core": "^0.36.0"
}
}