-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.93 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "ledit",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prepare": "husky install",
"clean": "rimraf site/build",
"build": "npm run clean && npm run build:css && npm run build:css-txt && npm run build:site",
"build:css": "npx tailwindcss -i site/styles.css -o site/styles-bundle.css",
"build:css-txt": "npx tailwindcss -i site/styles.css -o site/styles-bundle.css.txt",
"build:site": "node ./esbuild.mjs",
"dev": "concurrently \"npm run clean\" \"npx live-server site --cors --watch ./site --no-browser\" \"npm run proxy\" \"npm run build:site -- --watch\" \"npm run build:css -- --watch\" \"npm run build:css-txt -- --watch\"",
"proxy": "node proxy/index.js",
"format": "npx prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/badlogic/ledit.git"
},
"author": "",
"license": "BSD",
"bugs": {
"url": "https://github.com/badlogic/ledit/issues"
},
"homepage": "https://github.com/badlogic/ledit#readme",
"devDependencies": {
"@extractus/feed-extractor": "^7.0.1",
"@types/dompurify": "^3.0.2",
"@types/sortablejs": "^1.15.1",
"arrow-js": "^0.1.9",
"autoprefixer": "^10.4.15",
"compression": "^1.7.4",
"concurrently": "^8.1.0",
"cors": "^2.8.5",
"date-fns": "^2.30.0",
"dompurify": "^3.0.5",
"entities": "^4.5.0",
"esbuild": "^0.17.19",
"express": "^4.18.2",
"husky": "^8.0.3",
"live-server": "^1.2.2",
"postcss": "^8.4.28",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"reefjs": "^12.3.1",
"rimraf": "^5.0.1",
"sortablejs": "^1.15.0",
"tailwindcss": "^3.3.3",
"typescript": "^5.1.6",
"video.js": "^8.5.2"
},
"dependencies": {
"@arrow-js/core": "^1.0.0-alpha.9",
"@types/video.js": "^7.3.52",
"html2pdf.js": "^0.9.3",
"lit": "^2.8.0",
"lit-html": "^2.8.0",
"megalodon": "^7.0.0",
"remixicon": "^3.5.0"
}
}