-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.18 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
{
"name": "rendertex",
"version": "0.0.1",
"description": "An API for math rendering",
"main": "src/index.ts",
"type": "module",
"scripts": {
"start": "ts-node-esm src/index.ts",
"build": "tsc",
"startDev": "cross-env NODE_ENV=development ts-node-esm --transpile-only src/index.ts",
"dev": "nodemon"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HKGx/rendertex.git"
},
"author": "HKGx",
"license": "MIT",
"bugs": {
"url": "https://github.com/HKGx/rendertex/issues"
},
"homepage": "https://github.com/HKGx/rendertex#readme",
"devDependencies": {
"cross-env": "^7.0.3",
"nodemon": "^2.0.21",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.2"
},
"dependencies": {
"@tsconfig/node18-strictest-esm": "^1.0.1",
"@types/express": "^4.17.17",
"@types/node": "^18.15.7",
"@types/sharp": "^0.31.1",
"@zodios/core": "^10.8.0",
"@zodios/express": "^10.5.1",
"cache-manager": "^5.1.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"mathjax-full": "^3.2.2",
"redis": "^4.6.5",
"segfault-handler": "^1.3.0",
"sharp": "^0.31.3",
"ts-node": "^10.9.1",
"zod": "^3.21.4"
}
}