-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 1.29 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
{
"name": "shakeelmohamed.com",
"version": "5.0.0",
"description": "My personal website",
"private": true,
"scripts": {
"dev": "concurrently -k \"npm:start\" \"npm:postcss:w\"",
"start": "npm run-script postcss && npx @11ty/eleventy --serve --input=src --output=docs",
"build": "npx @11ty/eleventy --input=src --output=docs && npm run-script postcss",
"test": "alex --html ./docs/",
"postcss": "postcss src/styles.css -o docs/dist/tailwind.css",
"postcss:w": "postcss -w src/styles.css -o docs/dist/tailwind.css --poll"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shakeelmohamed/beta.git"
},
"author": "Shakeel Mohamed<[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/shakeelmohamed/beta/issues"
},
"homepage": "https://github.com/shakeelmohamed/beta#readme",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@tailwindcss/forms": "^0.4.0",
"@tailwindcss/typography": "^0.5.2",
"alex": "^11.0.0",
"autoprefixer": "^10.4.2",
"concurrently": "^7.2.2",
"git-date-extractor": "^4.0.1",
"jstransformer-markdown-it": "^3.0.0",
"markdown-it": "^13.0.0",
"postcss": "^8.4.49",
"postcss-cli": "^9.1.0",
"tailwindcss": "^3.1.3",
"tailwindcss-debug-screens": "^2.2.1"
}
}