-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1.03 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
{
"name": "ocaml-sf-website",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "eleventy --serve",
"build": "eleventy && npm run css:build",
"css:watch": "postcss -w src/styles/main.css -o src/css/main.css",
"css:build": "NODE_ENV=production postcss src/styles/main.css -o _site/css/main.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bettistein/ocaml-sf-website.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/bettistein/ocaml-sf-website/issues"
},
"homepage": "https://github.com/bettistein/ocaml-sf-website#readme",
"dependencies": {
"@11ty/eleventy": "^0.10.0",
"markdown-it-attrs": "^3.0.2",
"markdown-it-modify-token": "^1.0.2",
"prettier": "^1.19.1"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^2.0.6",
"autoprefixer": "^9.7.4",
"cssnano": "^4.1.10",
"postcss-cli": "^7.1.0",
"postcss-easy-import": "^3.0.0",
"tailwindcss": "^1.2.0"
}
}