This repository has been archived by the owner on Aug 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
120 lines (120 loc) · 3.53 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "lanyon",
"version": "0.3.33",
"description": "Jekyll without the Hassle",
"main": "src/config.js",
"engines": {
"node": ">=10"
},
"jest": {
"verbose": true,
"roots": [
"src/"
]
},
"files": [
"Makefile",
"scripts/ci-deploy.sh",
"src"
],
"bin": {
"lanyon": "src/cli.js"
},
"scripts": {
"fix": "DEBUG=eslint:cli-engine eslint . --fix",
"jest:update": "env DEBUG=scrolex:* NODE_ENV=test jest --updateSnapshot",
"jest:watch": "env DEBUG=scrolex:* NODE_ENV=test jest --watch",
"jest": "env DEBUG=scrolex:* NODE_ENV=test jest",
"lint": "DEBUG=eslint:cli-engine eslint .",
"npublish": "npm publish --otp",
"push": "git push && git push --tags",
"release:major": "env SEMANTIC=major yarn release",
"release:minor": "env SEMANTIC=minor yarn release",
"release:patch": "env SEMANTIC=patch yarn release",
"release": "npm version ${SEMANTIC:-patch} -m \"Release %s\" && npm-run-all push npublish",
"test:acceptance": "export LANYON_JEKYLL=$(pwd)/_jekyll/jekyll.sh && ./scripts/test-acceptance.sh",
"test": "npm-run-all lint test:acceptance",
"web:build": "cd website && yarn && yarn build:production",
"web:install": "cd website && yarn install",
"web:start": "cd website && yarn start"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kvz/lanyon.git"
},
"keywords": [
"jekyll",
"static",
"site",
"generator"
],
"author": "Kevin van Zonneveld",
"license": "MIT",
"bugs": {
"url": "https://github.com/kvz/lanyon/issues"
},
"homepage": "https://github.com/kvz/lanyon#readme",
"devDependencies": {
"@babel/eslint-parser": "7.18.9",
"@babel/eslint-plugin": "7.18.10",
"eslint": "8.23.0",
"eslint-config-transloadit": "^2.0.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "27.0.1",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.0.1",
"eslint-plugin-react": "7.31.1",
"eslint-plugin-react-hooks": "4.6.0",
"fakefile": "1.0.0",
"jest": "29.0.1",
"npm-run-all": "4.1.5"
},
"dependencies": {
"@babel/core": "7.18.13",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-decorators": "7.18.10",
"@babel/preset-env": "7.18.10",
"@babel/preset-react": "7.18.6",
"@types/webpack-env": "1.18.0",
"autoprefixer": "10.4.8",
"babel-loader": "8.2.5",
"browser-sync": "2.27.10",
"cache-loader": "4.1.0",
"chalk": "4.1.2",
"common-tags": "1.8.2",
"css-loader": "6.7.1",
"css-minimizer-webpack-plugin": "4.0.0",
"globby": "11.1.0",
"html-webpack-plugin": "5.5.0",
"imports-loader": "4.0.1",
"js-yaml": "4.1.0",
"lodash": "4.17.21",
"mini-css-extract-plugin": "2.6.1",
"nanohtml": "1.10.0",
"nodemon": "2.0.19",
"postcss": "8.4.16",
"postcss-loader": "7.0.1",
"postcss-preset-env": "7.8.0",
"react-hot-loader": "4.13.0",
"sass": "1.52.3",
"sass-loader": "13.0.0",
"scrolex": "0.0.27",
"stream-browserify": "^3.0.0",
"terser-webpack-plugin": "5.3.6",
"thread-loader": "3.0.4",
"ts-loader": "^9.3.1",
"typescript": "4.8.2",
"webpack": "^5.74.0",
"webpack-bundle-analyzer": "4.6.1",
"webpack-cli": "4.10.0",
"webpack-dev-middleware": "5.3.3",
"webpack-dev-server": "4.10.1",
"webpack-hot-middleware": "2.25.2",
"worker-loader": "3.0.8"
}
}