-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.13 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
{
"name": "sbhacks-site",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/sbhacks-org/sbhacks-site",
"author": "Bryan Terce <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"start": "run-p start:*",
"build": "cross-env NODE_ENV=production run-p build:*",
"start:eleventy": "eleventy --serve",
"build:eleventy": "eleventy",
"start:css": "yarn build:css --watch",
"build:css": "postcss src/_css --dir _site/css"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"@11ty/eleventy": "^0.11.0",
"axios": "^0.20.0",
"flickity": "^2.2.1",
"fntstring": "^1.5.0",
"qs": "^6.9.4",
"zod": "^1.11.9"
},
"devDependencies": {
"@tailwindcss/ui": "^0.6.2",
"autoprefixer": "^9.8.6",
"cross-env": "^7.0.2",
"husky": "^4.3.0",
"js-yaml": "^3.14.0",
"npm-run-all": "^4.1.5",
"postcss-cli": "^7.1.2",
"prettier": "2.1.2",
"pretty-quick": "^3.0.2",
"tailwindcss": "^1.8.10",
"tailwindcss-blend-mode": "^1.0.0",
"tailwindcss-image-rendering": "^1.0.2"
}
}