-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.26 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
{
"name": "thatline.github.io",
"version": "1.0.0",
"description": "",
"main": "index.js",
"private": "true",
"scripts": {
"start": "npm run-script build && npx @11ty/eleventy --serve --input=src --output=docs",
"build:11ty": "npx @11ty/eleventy --input=src --output=docs",
"build": "npm run-script build:11ty && npm run-script postcss",
"postcss": "postcss src/styles.css -o docs/dist/tailwind.css",
"postcss:w": "postcss -w src/styles.css -o docs/dist/tailwind.css",
"pretest": "npm run-script build:11ty",
"test": "mocha"
},
"devDependencies": {
"@11ty/eleventy": "^1.0.0",
"@tailwindcss/forms": "^0.3.3",
"@tailwindcss/typography": "^0.4.1",
"autoprefixer": "^10.3.3",
"jsonschema": "^1.4.0",
"jstransformer-markdown-it": "^2.1.0",
"markdown-it": "^10.0.0",
"mocha": "^9.1.3",
"postcss": "^8.3.6",
"postcss-cli": "^8.3.1",
"tailwindcss": "^2.2.8",
"tailwindcss-debug-screens": "^2.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thatline/thatline.github.io.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/thatline/thatline.github.io/issues"
},
"homepage": "https://github.com/thatline/thatline.github.io#readme"
}