generated from enatario/eleventy-base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.62 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
{
"name": "monument-palettes",
"version": "1.0.0",
"description": "",
"author": "Elaina Natario",
"license": "MIT",
"main": "index.js",
"scripts": {
"autoprefix:build": "npx postcss dist/*.css --replace --use autoprefixer",
"build": "npx npm-run-all -s clean eleventy lint:css lint:js sass:build autoprefix:build js:build",
"clean": "npx rimraf dist",
"eleventy": "npx eleventy",
"js:build": "rollup -c rollup.config.js",
"js:watch": "rollup -c rollup.config.js -w",
"lint:css": "npx stylelint src/css/**/*.scss",
"lint:js": "eslint \"src/js/**/*.js\" --quiet",
"serve": "npx @11ty/eleventy --serve",
"sass:build": "npx sass --no-source-map --load-path=node_modules src/css:dist --style=compressed",
"sass:watch": "npx sass --no-source-map --load-path=node_modules src/css:dist --watch",
"start": "npx npm-run-all -p serve sass:watch js:watch"
},
"devDependencies": {
"@11ty/eleventy": "^0.12.1",
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^18.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@thoughtbot/eslint-config": "^0.1.0",
"@thoughtbot/stylelint-config": "^2.0.0",
"autoprefixer": "^9.8.8",
"bourbon": "^7.0.0",
"colorthief": "^2.3.2",
"eslint": "^8.1.0",
"fs": "0.0.1-security",
"normalize.css": "^8.0.1",
"npm-run-all": "^4.1.5",
"postcss-cli": "^7.1.1",
"rgb-hex": "^3.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.59.0",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.43.4",
"stylelint": "^13.13.1"
},
"dependencies": {}
}