-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2 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
63
64
65
66
67
68
69
70
{
"name": "debuglg",
"version": "0.6.0",
"description": "debug logging for DeltaChat",
"keywords": [
"webxdc",
"deltachat"
],
"contributors": [
{
"name": "Martijn Faassen",
"email": "[email protected]",
"url": "http://blog.startifact.com"
}
],
"files": [
"./dist"
],
"scripts": {
"dev": "vite",
"webxdc-dev": "concurrently \"npm run dev\" \"webxdc-dev run http://localhost:3000\"",
"build": "vite build",
"webxdc-build": "npm run build && rimraf ./debug_logging.xdc && cd dist && bestzip --level 9 ../debug_logging.xdc *",
"webxdc-dev-xdc": "npm run webxdc-build && webxdc-dev run debug_logging.xdc",
"serve": "vite preview",
"test": "jest",
"typecheck": "tsc --project tsconfig.json --noEmit",
"version": "version-changelog CHANGELOG.md && git add CHANGELOG.md",
"prepublishOnly": "npm run build"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@babel/preset-typescript": "^7.16.7",
"@tailwindcss/forms": "^0.5.2",
"@tsconfig/recommended": "^1.0.1",
"@types/jest": "^27.5.0",
"@types/lunr": "^2.3.4",
"@types/node": "^17.0.21",
"autoprefixer": "^10.4.7",
"babel-jest": "^28.1.2",
"babel-preset-solid": "^1.0.0",
"bestzip": "^2.2.1",
"concurrently": "^7.2.2",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.4.0",
"fake-indexeddb": "^4.0.0",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"jsdom": "^19.0.0",
"postcss": "^8.4.14",
"prettier": "^2.5.1",
"prettier-plugin-tailwindcss": "^0.1.12",
"rimraf": "^3.0.2",
"solid-jest": "^0.2.0",
"tailwindcss": "^3.1.6",
"typescript": "^4.6.4",
"version-changelog": "^3.1.1",
"vite": "^2.9.8",
"vite-plugin-solid": "^2.2.6",
"webxdc-dev": "^0.15.1",
"webxdc-types": "^0.1.0"
},
"dependencies": {
"@tanstack/virtual-core": "^3.0.0-alpha.1",
"lunr": "^2.3.9",
"solid-js": "^1.4.6"
}
}