-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 2.01 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
{
"name": "11ty-base",
"version": "0.2.0",
"description": "",
"author": "Elaina Natario",
"license": "MIT",
"main": "index.js",
"type": "module",
"scripts": {
"build:autoprefix": "npx postcss dist/*.css --replace --use autoprefixer",
"build:eleventy": "eleventy",
"build:js": "rollup -c rollup.config.js",
"build:sass": "sass --no-source-map --load-path=node_modules src/css:dist --style=compressed",
"build": "npm-run-all -s clean build:eleventy lint:js build:sass build:autoprefix build:js",
"clean": "npx rimraf dist",
"lint:css": "npx stylelint src/css/**/*.scss",
"lint:js": "eslint \"src/js/**/*.js\" --quiet",
"watch:eleventy": "eleventy --serve --quiet",
"watch:sass": "sass --no-source-map --load-path=node_modules src/css:dist --watch",
"watch:js": "rollup -c rollup.config.js --bundleConfigAsCjs -w",
"start": "npm-run-all build:sass --parallel watch:*"
},
"repository": {
"type": "git",
"url": "git://github.com/enatario/eleventy-base.git"
},
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@eslint/compat": "^1.2.6",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.16.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@thoughtbot/eslint-config": "^1.0.2",
"autoprefixer": "^10.4.20",
"eslint": "^9.16.0",
"globals": "^15.13.0",
"jest": "^29.7.0",
"normalize.css": "^8.0.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.49",
"postcss-cli": "^11.0.0",
"rimraf": "^6.0.1",
"rollup": "^4.28.1",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.82.0",
"stylelint": "^16.11.0",
"stylelint-config-alphabetical-order": "^1.0.0",
"stylelint-config-standard-scss": "^14.0.0"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}