-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 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
{
"name": "castmill.com",
"version": "1.0.0",
"description": "Castmill landing page",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"@11ty/eleventy": "^1.0.0",
"@11ty/eleventy-img": "^1.1.0",
"@11ty/eleventy-navigation": "^0.3.2",
"@tailwindcss/forms": "^0.4.0",
"@tailwindcss/typography": "^0.5.2",
"autoprefixer": "^10.4.2",
"axios": "^0.26.0",
"datauri": "^4.1.0",
"eleventy-plugin-reading-time": "^0.0.1",
"gsap": "^3.10.2",
"npm-run-all": "^4.1.5",
"postcss-cli": "^9.1.0",
"puppeteer": "^13.5.2",
"sass": "^1.49.8",
"tailwindcss": "^3.0.23"
},
"scripts": {
"watch:tailwind": "postcss src/scss/global.scss --o src/css/global.css --watch",
"build:tailwind": "postcss src/scss/global.scss --o src/css/global.css",
"build:scss": "sass src/scss:src/css",
"watch:eleventy": "eleventy --serve",
"build:eleventy": "eleventy",
"dev": "npm-run-all --parallel watch:*",
"build": "npm-run-all build:scss build:tailwind build:eleventy"
}
}