-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.57 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
{
"name": "art-coop",
"version": "1.0.0",
"description": "GIA Solidarity Economy Website",
"main": "index.js",
"scripts": {
"build": "NODE_ENV=production eleventy",
"serve": "run-p eleventy-serve netlify-proxy",
"eleventy-serve": "NODE_ENV=development eleventy --serve",
"netlify-proxy": "netlify-cms-proxy-server",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "prettier --check . && prettier --check --parser html ../**/*.ejs",
"lint:fix": "prettier --write . && prettier --write --parser html ../**/*.ejs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jboolean/art-coop.git"
},
"author": "Julian Boilen",
"license": "ISC",
"bugs": {
"url": "https://github.com/jboolean/art-coop/issues"
},
"homepage": "https://github.com/jboolean/art-coop#readme",
"devDependencies": {
"@11ty/eleventy": "^0.11.1",
"autoprefixer": "^10.2.4",
"cssnano": "^4.1.10",
"date-fns": "^2.22.1",
"date-fns-tz": "^1.1.4",
"husky": "^4.3.8",
"less": "^4.1.1",
"lint-staged": "^10.5.4",
"lodash": "^4.17.21",
"markdown-it-container": "^3.0.0",
"markdown-it-link-attributes": "^3.0.0",
"netlify-cms-proxy-server": "^1.3.11",
"normalize.css": "^8.0.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.6",
"postcss-import": "^14.0.0",
"prettier": "2.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,html,json,yml,yaml,css,less,md}": "prettier --write",
"*.ejs": "prettier --write --parser html"
}
}