-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 943 Bytes
/
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
{
"name": "3-blog",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"serve": "serve --no-clipboard --listen 8080 dist",
"dev": "NODE_ENV=development run-s dev:*",
"dev:snowpack": "snowpack dev",
"build": "NODE_ENV=production run-s build:*",
"build:snowpack": "snowpack build",
"setup": "npm install && npm run validate"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@11ty/eleventy": "^0.12.1",
"@snowpack/plugin-optimize": "^0.2.13",
"@snowpack/plugin-postcss": "^1.2.2",
"@snowpack/plugin-run-script": "^2.3.0",
"@tailwindcss/jit": "^0.1.18",
"autoprefixer": "^10.2.5",
"date-fns": "^2.19.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.9",
"postcss-cli": "^8.3.1",
"postcss-preset-env": "^6.7.0",
"serve": "^11.3.2",
"snowpack": "^3.2.2"
},
"dependencies": {
"alpinejs": "^2.8.2"
}
}