forked from cohenerickson/Velocity
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.64 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
{
"name": "velocity",
"description": "A fully featured web browser built using web technologies.",
"version": "1.3.0",
"scripts": {
"dev": "concurrently \"rollup -c --environment BUILD:development\" \"solid-start dev --host\" \"bare-server-node --host=localhost --port=8080\"",
"build": "rollup -c --environment BUILD:production && solid-start build",
"start": "node scripts/server.js",
"pretty": "prettier --write ."
},
"type": "module",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/color": "^3.0.3",
"@types/debug": "^4.1.7",
"@types/mime-db": "^1.43.1",
"@types/node": "^18.14.6",
"@types/prismjs": "^1.26.0",
"autoprefixer": "^10.4.12",
"concurrently": "^7.6.0",
"postcss": "^8.4.18",
"prettier": "^2.8.4",
"rollup": "^2.79.1",
"solid-start-node": "^0.2.0",
"tailwindcss": "^3.2.0",
"typescript": "^4.8.4",
"vite": "^3.1.8",
"vite-plugin-static-copy": "^0.13.0",
"webextension-manifest": "^1.0.0"
},
"dependencies": {
"@solidjs/meta": "^0.28.0",
"@solidjs/router": "^0.6.0",
"@thisbeyond/solid-dnd": "^0.7.4",
"@titaniumnetwork-dev/ultraviolet": "^1.0.8-beta",
"@tomphttp/bare-client": "^1.1.2-beta.3",
"@tomphttp/bare-server-node": "^1.2.3",
"@zip.js/zip.js": "^2.6.79",
"color": "^4.2.3",
"express": "^4.18.2",
"idb": "^7.1.1",
"mime-db": "^1.52.0",
"prism-themes": "^1.9.0",
"prismjs": "^1.29.0",
"solid-js": "^1.6.2",
"solid-start": "^0.2.0"
},
"engines": {
"node": ">=18"
}
}