-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.65 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
{
"name": "@stephen.francis/dox",
"version": "0.2.6",
"description": "Local Browse Functionality on a Git Repo containing Markdown",
"main": "index.js",
"repository": {
"type": "git",
"url": "[email protected]:stephenfrancis/dox"
},
"author": "[email protected]",
"license": "Apache-2.0",
"scripts": {
"build": "NODE_ENV=production esbuild ./src/app/App.tsx --bundle --minify --sourcemap --platform=browser --define:global=window --outdir=./dist",
"clean": "rm -f -r dist/*",
"deploy": "firebase deploy",
"serve": "node ./src/Serve.js",
"test": "npx jest",
"watch": "NODE_ENV=production esbuild ./src/app/App.tsx --bundle --minify --sourcemap --platform=browser --define:global=window --outdir=./dist --watch"
},
"bin": {
"serve-dox": "./src/Serve.js"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": [
"ts-jest",
{
"diagnostics": {
"ignoreCodes": [
151001
]
}
}
]
},
"testRegex": "__tests__/.*\\.(ts|tsx)$"
},
"dependencies": {
"@types/node": "^18.7.18",
"@types/react": "^18.0.20",
"debug": "^4.3.4",
"koa": "^2.13.4",
"koa-send": "^5.0.1",
"marked": "^4.1.0",
"path-browserify": "^1.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"underscore": "^1.13.4"
},
"devDependencies": {
"@types/jest": "^29.0.2",
"@types/react": "^17.0.45",
"esbuild": "^0.15.7",
"jest": "^29.0.3",
"ts-jest": "^29.0.1",
"ts-node": "^10.9.1",
"tslib": "^2.4.0",
"typescript": "^4.8.3"
}
}