-
Notifications
You must be signed in to change notification settings - Fork 94
/
package.json
61 lines (61 loc) · 1.35 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
{
"name": "flow-os",
"version": "beta",
"description": "The customizable webOS.",
"keywords": [
"tomp",
"webos"
],
"license": "MIT",
"author": "Flow Works",
"type": "module",
"scripts": {
"start": "NODE_ENV=production node src/index.js",
"win": "cmd /V /C \"set NODE_ENV=production&& node src/index.js\"",
"dev": "nodemon src/index.js",
"test": "semistandard",
"commit": "cz"
},
"dependencies": {
"@mercuryworkshop/bare-mux": "^2.0.9",
"@mercuryworkshop/epoxy-transport": "^2.1.11",
"@titaniumnetwork-dev/ultraviolet": "^3.2.7",
"@tomphttp/bare-server-node": "^2.0.1",
"dotenv": "^16.3.1",
"express": "^5.0.0",
"fastify": "^4.21.0",
"memory-cache": "^0.2.0",
"mime-types": "^3.0.0",
"openai": "^4.59.0",
"uglify-js": "^3.17.4",
"wisp-server-node": "^1.1.4"
},
"overrides": {
"word-wrap": "^1.2.4"
},
"devDependencies": {
"commitizen": "^4.3.0",
"commitizen-emoji": "^1.0.5",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"nodemon": "^3.0.1",
"prettier": "^3.3.3",
"semistandard": "^17.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/commitizen-emoji"
},
"commitizenEmoji": {
"conventionalFormat": true
}
},
"packageManager": "[email protected]",
"semistandard": {
"ignore": [
"public/dynamic",
"public/uv",
"public/builtin/apps/emulator"
]
}
}