-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 887 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 887 Bytes
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
{
"name": "tocwexsyndicate.com",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build:css": "postcss styles.css -o output.css",
"watch:css": "chokidar './**/*.css' './**/*.html' -c 'npm run build:css'",
"start": "lite-server",
"dev": "npm run watch:css & npm run start",
"test": "echo \"Error: no test specified\" && exit 1",
"vercel-build": "npm run build:css && cp index.html public/index.html && cp output.css public/output.css && cp -r assets/* public/assets"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"autoprefixer": "^10.4.17",
"express": "^4.18.2",
"postcss": "^8.4.33",
"tailwindcss": "^3.4.1"
},
"devDependencies": {
"chokidar-cli": "^3.0.0",
"lite-server": "^2.6.1",
"nodemon": "^3.0.3",
"postcss-cli": "^11.0.0",
"prettier": "3.2.4"
}
}