-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.15 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
{
"name": "tex2typst-webapp",
"version": "0.1.10",
"type": "module",
"scripts": {
"dev": "node run-server.js",
"make:html": "node tools/make-cheat-sheet-html.js",
"build:client": "vite build --outDir dist/client --ssrManifest",
"build:server": "vite build --outDir dist/server --ssr src/entry-server.js",
"build": "sh tools/build.sh",
"preview": "cross-env NODE_ENV=production node run-server.js",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist/deploy",
"test": "npx mocha"
},
"dependencies": {
"@qwinsi/clipboard-js": "^0.1.0",
"@qwinsi/vue-components": "^0.0.2",
"katex": "^0.16.11",
"tex2typst": "^0.2.9",
"vue": "^3.4.29"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.0.5",
"autoprefixer": "^10.4.19",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.23.0",
"express": "^4.19.2",
"gh-pages": "^6.1.1",
"mocha": "^10.6.0",
"postcss": "^8.4.39",
"squirrelly": "^9.1.0",
"tailwindcss": "^3.4.4",
"toml": "^3.0.0",
"vite": "^5.3.1"
}
}