-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
75 lines (75 loc) · 2.09 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
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "open-collective-foundation",
"version": "1.0.0",
"description": "Open Collective Foundation 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 .",
"lint:fix": "prettier --write ."
},
"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"
},
"engines": {
"node": "^18"
},
"homepage": "https://github.com/jboolean/art-coop#readme",
"devDependencies": {
"@11ty/eleventy": "^0.11.1",
"@babel/core": "^7.18.9",
"@babel/plugin-transform-runtime": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"autoprefixer": "^10.2.4",
"axios": "^0.27.2",
"babel-loader": "^8.2.5",
"cssnano": "^4.1.10",
"date-fns": "^2.22.1",
"date-fns-tz": "^1.1.4",
"ejs-lint": "^1.2.2",
"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",
"memfs": "^3.4.7",
"netlify-cms-app": "^2.15.72",
"netlify-cms-proxy-server": "^1.3.11",
"netlify-cms-widget-markdown-toast-ui": "~0.1.0",
"normalize.css": "^8.0.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.6",
"postcss-import": "^14.0.0",
"prettier": "2.2.1",
"rss-parser": "^3.12.0",
"webpack": "^5.73.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,html,json,yml,yaml,css,less,md}": "prettier --write",
"*.ejs": "ejslint --await"
},
"dependencies": {
"@11ty/eleventy-img": "^2.0.1",
"cross-fetch": "^3.1.5",
"dotenv": "^16.0.0",
"graphql": "^16.4.0",
"graphql-request": "^4.2.0",
"netlify-cms-oauth-provider-node": "^2.0.0"
}
}