-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
109 lines (109 loc) · 3.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
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
{
"name": "@datagraphics/baker",
"type": "module",
"version": "0.47.2",
"exports": "./lib/index.js",
"files": [
"bin",
"lib",
"svelte.config.js"
],
"engines": {
"node": ">=14.13.1"
},
"bin": {
"bake": "./bin/bake.js"
},
"scripts": {
"build": "./bin/bake.js build --config example/baker.config.js",
"build:simple": "./bin/bake.js build --config example-simple/baker.config.js",
"build:screenshot": "NODE_ENV=development ./bin/bake.js screenshot --config example/baker.config.js",
"release": "np --no-yarn --no-tests",
"git-pre-commit": "precise-commits",
"serve:simple": "NODE_ENV=development ./bin/bake.js serve --config example-simple/baker.config.js",
"start": "NODE_ENV=development ./bin/bake.js serve --config example/baker.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/datadesk/baker.git"
},
"keywords": [
"templates",
"static",
"generator"
],
"author": "Ryan Murphy",
"license": "MIT",
"bugs": {
"url": "https://github.com/datadesk/baker/issues"
},
"homepage": "https://github.com/datadesk/baker#readme",
"dependencies": {
"@babel/core": "^7.22.1",
"@babel/plugin-transform-react-jsx": "^7.23.4",
"@babel/plugin-transform-runtime": "^7.22.9",
"@babel/preset-env": "^7.23.6",
"@babel/preset-typescript": "^7.22.5",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/pluginutils": "^5.0.2",
"@web/rollup-plugin-import-meta-assets": "^2.2.1",
"autoprefixer": "^10.4.16",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-transform-async-to-promises": "^0.8.18",
"chokidar": "^3.5.3",
"clean-css": "^5.3.3",
"colorette": "^2.0.20",
"core-js": "^3.27.1",
"d3-dsv": "^2.0.0",
"date-fns": "^3.3.1",
"debug": "^4.3.4",
"dotenv": "^16.3.1",
"dotenv-expand": "^10.0.0",
"dynamic-import-polyfill": "^0.1.1",
"fast-glob": "^3.3.1",
"html-minifier-terser": "^7.2.0",
"imagemin": "^8.0.1",
"imagemin-gifsicle": "^7.0.0",
"imagemin-jpegtran": "^7.0.0",
"imagemin-optipng": "^8.0.0",
"imagemin-svgo": "^10.0.1",
"journalize": "^2.6.0",
"lodash.debounce": "^4.0.8",
"magic-string": "^0.30.6",
"mini-sync": "^0.3.0",
"mri": "^1.1.4",
"node-fetch": "^3.3.2",
"nunjucks": "^3.2.4",
"parse-json": "^8.1.0",
"postcss": "^8.4.31",
"postcss-flexbugs-fixes": "^5.0.2",
"premove": "^4.0.0",
"puppeteer": "^13.7.0",
"quaff": "^5.0.0",
"require-from-string": "^2.0.2",
"rev-path": "^3.0.0",
"rollup": "^2.79.1",
"rollup-plugin-svelte": "^7.1.6",
"rollup-plugin-terser": "^7.0.0",
"sass": "^1.69.6",
"simple-code-frame": "^1.1.1",
"svelte": "^3.59.2",
"svelte-preprocess": "^5.0.0",
"typescript": "^4.9.5"
},
"devDependencies": {
"@datagraphics/cookbook": "^1.14.2",
"@datagraphics/prettier-config": "^2.0.0",
"@types/node": "^18.15.11",
"@vercel/git-hooks": "^1.0.0",
"np": "^7.6.3",
"preact": "^10.19.3",
"precise-commits": "^1.0.2",
"prettier": "^2.8.8"
},
"prettier": "@datagraphics/prettier-config"
}