-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.39 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
{
"name": "conwaydev.github.io",
"version": "1.0.0",
"description": "Pretty much the best website ever",
"main": "index.js",
"homepage": "https://conwaydev.com",
"scripts": {
"build:styles": "postcss _css/tailwind.css -o _includes/css/tailwind.css",
"build:styles:dev": "postcss _css/tailwind.css -o _includes/css/tailwind.css",
"build:js": "webpack",
"build": "JEKYLL_ENV=production jekyll build && yarn build:js && yarn build:styles",
"build:dev": "yarn build:js && yarn build:styles:dev",
"develop": "yarn build:dev && jekyll serve",
"predeploy": "yarn run build",
"deploy": "gh-pages -d _site"
},
"repository": {
"type": "git",
"url": "git+https://github.com/conwaydev/conwaydev.github.io.git"
},
"keywords": [
"Tight"
],
"author": "Justin Conway <justin@conwaydev.com> (http://conwaydev.com/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/conwaydev/conwaydev.github.io/issues"
},
"devDependencies": {
"@babel/core": "^7.22.8",
"@babel/preset-env": "^7.22.7",
"autoprefixer": "^10.4.14",
"babel-cli": "^6.26.0",
"babel-loader": "^9.1.2",
"babel-preset-env": "^1.6.0",
"cssnano": "^6.0.1",
"gh-pages": "^5.0.0",
"postcss-cli": "^10.1.0",
"webpack": "^5.72.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@tailwindcss/typography": "^0.5.9",
"tailwindcss": "^3.2.7"
}
}