-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
executable file
·46 lines (46 loc) · 1.46 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
{
"name": "foxy-eleventy-fundraising-minisite",
"version": "1.0.0",
"description": "A one-page ecommerce website built with Foxy.io, Eleventy, Tailwind, PurgeCSS and PostCSS",
"scripts": {
"start": "concurrently \"postcss src/_assets/stylesheets/*.css -o src/static/app.compiled.css --watch --verbose\" \"webpack --watch --config webpack.config.js\" \"eleventy --serve --watch\"",
"build": "del dist && eleventy && NODE_ENV=production postcss src/_assets/stylesheets/app.css -o src/_includes/app.compiled.css && webpack -p --config webpack.config.js && ELEVENTY_ENV=production eleventy"
},
"author": "Chris Collins",
"license": "ISC",
"devDependencies": {
"@11ty/eleventy": "^0.11.0",
"@11ty/eleventy-img": "^0.2.4",
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.10.3",
"@fullhuman/postcss-purgecss": "^2.1.0",
"autoprefixer": "^9.7.4",
"babel-loader": "^8.0.6",
"concurrently": "^5.1.0",
"cz-conventional-changelog": "^3.2.0",
"del-cli": "^3.0.0",
"html-minifier": "^4.0.0",
"husky": "^4.2.5",
"js-yaml": "^3.13.1",
"luxon": "^1.22.0",
"node-fetch": "^2.6.0",
"postcss-cli": "^7.1.0",
"prettier": "2.0.5",
"pretty-quick": "^2.0.1",
"tailwindcss": "^1.2.0",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"@foxy.io/node-api": "^1.0.0-beta.7"
},
"dependencies": {},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}