-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2.24 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
56
57
58
59
60
61
62
{
"name": "japassou.pt",
"author": "cooperativa.tech",
"homepage": "https://japassou.pt",
"license": "MIT",
"scripts": {
"clean": "rm -rf dist",
"eleventy:default": "npx eleventy",
"eleventy:watch": "npx eleventy --watch",
"styles:prod": "postcss src/styles/index.css -o ./dist/styles/index.css",
"styles:dev": "postcss src/styles/index.css -o ./dist/styles/index.css --watch --verbose",
"scripts:prod": "webpack --mode=production",
"scripts:dev": "webpack --watch --mode=development",
"serve": "light-server -c .lightserverrc",
"dev": "npm-run-all clean eleventy:default --parallel eleventy:watch styles:dev scripts:dev serve --print-label",
"dev:debug": "DEBUG=* npm run dev",
"build": "NODE_ENV=production run-s clean styles:prod scripts:prod eleventy:default --print-label",
"lint": "eslint src .eleventy.js eleventy --ignore-pattern !.eleventy.js",
"lint-styles": "stylelint 'src/**/*.css'",
"lint-templates": "prettier --check src/**/*.njk --parser html"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"light-server": "2.6.4",
"pa11y-ci": "^2.3.0",
"prettier": "^2.0.2",
"stylelint": "^13.2.1",
"stylelint-config-prettier": "^8.0.1",
"stylelint-order": "^4.0.0",
"stylelint-prettier": "^1.1.2"
},
"dependencies": {
"@11ty/eleventy": "^0.10.0",
"@11ty/eleventy-plugin-rss": "^1.0.7",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@fullhuman/postcss-purgecss": "^2.1.0",
"@mightyplow/eleventy-plugin-cache-buster": "^1.1.3",
"autoprefixer": "^9.6.5",
"babel-loader": "^8.1.0",
"cssnano": "^4.1.10",
"cssnano-preset-advanced": "^4.0.7",
"eleventy-plugin-lazyimages": "^1.0.6",
"eslint-plugin-prettier": "^3.1.2",
"html-minifier": "^4.0.0",
"instant.page": "^3.0.0",
"moment": "^2.24.0",
"normalize.css": "^8.0.1",
"npm-run-all": "^4.1.5",
"postcss-cli": "^7.1.0",
"postcss-import": "^12.0.1",
"postcss-responsive-type": "^1.0.0",
"precss": "^4.0.0",
"turbolinks": "^5.2.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9"
}
}