-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 2.14 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 2.14 KB
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
{
"name": "freeter.io",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/FreeterApp/freeter.io.git",
"author": "Alex Kaul",
"license": "CC-BY-SA-4.0",
"scripts": {
"dev:copy": "cross-env NODE_ENV=development nodemon --watch src/_copy --exec \"copyfiles --up 2 src/_copy/**/* build/\"",
"dev:pages": "cross-env NODE_ENV=development npx eleventy --serve",
"dev:scripts": "cross-env NODE_ENV=development webpack --mode=development --watch",
"dev:styles": "cross-env NODE_ENV=development sass --embed-source-map --watch src/_styles:build/styles",
"dev": "rimraf build && concurrently --names \"STYLES,SCRIPTS,PAGES,COPY\" -c \"blue.bold,magenta.bold,green.bold,yellow.bold\" \"yarn run dev:styles\" \"yarn run dev:scripts\" \"yarn run dev:pages\" \"yarn run dev:copy\"",
"prod:copy": "cross-env NODE_ENV=production copyfiles --up 2 src/_copy/**/* build/",
"prod:pages": "cross-env NODE_ENV=production npx eleventy",
"prod:scripts": "cross-env NODE_ENV=production webpack --mode=production",
"prod:styles": "cross-env NODE_ENV=production sass --no-source-map src/_styles:build/styles && postcss ./build/styles/*.css --replace",
"prod": "rimraf build && concurrently --names \"STYLES,SCRIPTS,COPY\" -c \"blue.bold,magenta.bold,yellow.bold\" \"yarn run prod:styles\" \"yarn run prod:scripts\" \"yarn run prod:copy\" && yarn run prod:pages",
"cd-build": "yarn run prep-deps && yarn run prod",
"prep-deps": "yarn add -D sharp --ignore-engines"
},
"devDependencies": {
"@11ty/eleventy": "^3.1.2",
"@11ty/eleventy-img": "^6.0.4",
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.7",
"autoprefixer": "^10.4.16",
"babel-loader": "^9.1.3",
"bootstrap": "5.3.2",
"concurrently": "^8.2.2",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"cssnano": "^6.0.3",
"eleventy-plugin-toc": "^1.1.5",
"markdown-it": "^14.0.0",
"markdown-it-anchor": "^9.2.0",
"nodemon": "^3.0.2",
"postcss": "^8.4.33",
"postcss-cli": "^11.0.0",
"rimraf": "^5.0.5",
"sass": "^1.69.7",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {}
}