-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.6 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.6 KB
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
{
"name": "webjsx-org",
"version": "0.0.6",
"private": true,
"scripts": {
"clean": "rm -rf build && rm -rf dist && mkdir build && mkdir dist",
"copy-static": "cp -r src/* dist && cp -r dist/* build && cp -r static/* build && cp _headers build",
"copy-webjsx": "mkdir -p build/latest/webjsx && cp -r node_modules/webjsx/* build/latest/webjsx",
"build-css-dev": "npx tailwindcss build -c tailwind.config.cjs -i ./src/styles.css -o ./dist/styles.css && cp dist/styles.css build",
"build-dev": "npm run clean && npx tsc && npm run copy-static && npm run build-css-dev && npm run gabble-debug",
"build-css": "NODE_ENV=production npx tailwindcss -c tailwind.config.cjs build -i ./src/styles.css -o ./dist/styles.css && cp dist/styles.css build",
"build": "npm run clean && npx tsc && npm run copy-static && npm run copy-webjsx && npm run build-css && npm run gabble",
"build-html": "npx tsc && cp dist/page.js build && npm run gabble",
"gabble": "npx gabble -s dist/pages -o build -x components",
"gabble-debug": "npx gabble --debug -s dist/pages -o build -x components"
},
"type": "module",
"dependencies": {
"@types/js-beautify": "^1.14.3",
"@types/jsdom": "^21.1.7",
"@types/marked": "^6.0.0",
"@types/node": "^22.10.5",
"autoprefixer": "^10.4.20",
"gabble": "^2.1.1",
"highlight.js": "^11.11.1",
"http-server": "^14.1.1",
"js-beautify": "^1.15.1",
"jsdom": "^26.0.0",
"marked": "^15.0.6",
"marked-highlight": "^2.2.1",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.3",
"webjsx": "^0.0.73"
}
}