-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.55 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
{
"name": "syncloungeserver",
"version": "0.0.0-semantically-released",
"description": "SyncLounge socket server",
"bin": "./dist/index.js",
"main": "./dist/lib.js",
"scripts": {
"build": "babel src --out-dir dist",
"start": "node dist/index.js",
"lint": "eslint .",
"dev": "nodemon --exec babel-node src",
"prepare": "if-env SKIP_BUILD=true && echo 'Skipping build' || npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/synclounge/syncloungeserver.git"
},
"keywords": [
"synclounge"
],
"author": {
"name": "Travis Shivers"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/synclounge/syncloungeserver/issues"
},
"homepage": "https://github.com/synclounge/syncloungeserver#readme",
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/node": "^7.26.0",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@delucis/if-env": "^1.1.2",
"babel-preset-airbnb": "^5.0.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.31.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.10",
"nodemon": "^3.1.7"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.21.1",
"nconf": "^0.12.1",
"socket.io": "^4.8.1",
"uuid": "^10.0.0"
},
"optionalDependencies": {
"bufferutil": "^4.0.8",
"utf-8-validate": "^6.0.5"
},
"files": [
"dist"
],
"engines": {
"node": ">=12"
}
}