-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.85 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
{
"name": "dumb-project-001",
"version": "1.1.11",
"description": "dumb project",
"main": "eleventy.config.js",
"type": "module",
"scripts": {
"html:dev": "ELEVENTY_ENV=dev set DEBUG=Eleventy* & npx @11ty/eleventy --serve",
"html:prd": "ELEVENTY_ENV=production NODE_ENV=production npx @11ty/eleventy",
"css:dev": "postcss ./src/scss/style.scss --output ./_site/css/style.css --env development --verbose --watch",
"css:prd": "postcss ./src/scss/style.scss --output ./_site/css/style.css --env production",
"js:dev": "rollup --config --watch",
"js:prd": "NODE_ENV=production rollup --config",
"build": "NODE_ENV=production npm-run-all --serial css:prd js:prd html:prd",
"start": "NODE_ENV=develop run-p html:dev js:dev css:dev",
"test": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" npx jest --collectCoverage --watchAll"
},
"keywords": [],
"author": "welt",
"license": "UNLICENSED",
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"@eslint/js": "^9.15.0",
"@jest/globals": "^29.7.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"dotenv": "^16.4.5",
"eslint": "^9.15.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.9.0",
"globals": "^15.12.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.49",
"postcss-cli": "^11.0.0",
"postcss-scss": "^4.0.9",
"rollup": "^4.27.4",
"rollup-plugin-output-manifest": "^2.0.0"
},
"dependencies": {
"autoprefixer": "^10.4.20",
"cssnano": "^7.0.6",
"postcss-advanced-variables": "^5.0.0",
"postcss-assets": "^6.0.0",
"postcss-color-function": "^4.1.0",
"postcss-hash": "^3.0.0",
"postcss-map-get": "^0.3.0",
"postcss-nested": "^7.0.2",
"postcss-sort-media-queries": "^5.2.0"
}
}