-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
40 lines (40 loc) · 848 Bytes
/
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
{
"private": true,
"license": "ISC",
"type": "module",
"main": "src/server/index.js",
"scripts": {
"start": "node .",
"watch": "nodemon .",
"build": "./build/build.sh",
"postinstall": "yarn licenses generate-disclaimer > assets/licenses.txt"
},
"dependencies": {
"@fontsource/noto-sans": "^5.0.18",
"@fontsource/quantico": "^5.0.18",
"koa": "^2.15.0",
"koa-bodyparser": "^4.4.1",
"koa-compress": "^5.1.1",
"koa-router": "^12.0.1",
"koa-send": "^5.0.1",
"lodash-es": "^4.17.21",
"normalize.css": "^8.0.1",
"resolve-path": "^1.4.0",
"vue": "^3.4.5",
"vue3-sfc-loader": "^0.8.4",
"ws": "^8.16.0"
},
"devDependencies": {
"esbuild": "^0.19.11",
"nodemon": "^3.0.2",
"pkg": "^5.8.1"
},
"nodemonConfig": {
"ignore": [
"src/themes/userspace/**"
],
"events": {
"start": "cls || clear"
}
}
}