-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.07 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.07 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
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
71
72
73
{
"name": "tapcode",
"version": "1.4.0",
"description": "TapCode prototype with typed Express server and Vite React client.",
"type": "module",
"bin": {
"tapcode": "bin/tapcode.js"
},
"files": [
"bin",
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "NODE_ENV=development tsx server/index.ts .",
"build": "npm run build:client && npm run build:server",
"build:client": "vite build",
"build:server": "tsc --project tsconfig.server.json && fix-esm-import-path dist/server",
"start": "NODE_ENV=production node ./bin/tapcode.js .",
"check": "tsc --noEmit",
"test:unit": "vitest run --pool=vmThreads",
"lint": "eslint . --ext .ts,.tsx",
"test": "npm run check && npm run test:unit && prettier --write . && npm run lint",
"tests": "npm run test",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gornostal/TapCode.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/gornostal/TapCode/issues"
},
"homepage": "https://github.com/gornostal/TapCode#readme",
"engines": {
"node": ">=18.17.0"
},
"packageManager": "npm@11.7.0",
"dependencies": {
"express": "^5.2.1",
"fuse.js": "^7.1.0",
"highlight.js": "^11.11.1",
"logform": "^2.7.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"winston": "^3.19.0"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.18",
"@types/express": "^5.0.6",
"@types/node": "^24.10.4",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.50.1",
"@typescript-eslint/parser": "^8.50.1",
"@vitejs/plugin-react": "^5.1.2",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"fix-esm-import-path": "^1.10.3",
"prettier": "^3.7.4",
"tailwindcss": "^4.1.18",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^7.3.0",
"vitest": "^4.0.16"
}
}