-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.04 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.04 KB
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
{
"name": "sms-socket-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npx tsc *.ts",
"start": "node index"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/fss/sms-socket-api.git"
},
"author": "Rafal Drag <rafal.drag@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/fss/sms-socket-api/issues"
},
"homepage": "https://github.com/fss/sms-socket-api#readme",
"dependencies": {
"eslint": "^8.53.0",
"express": "^4.18.2",
"lodash": "^4.17.21",
"restify-errors": "^8.0.2",
"socket.io": "^4.7.2",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.6"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.9.0",
"@types/restify-errors": "^4.3.8",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"eslint-config-standard-with-typescript": "^36.1.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"typescript": "^5.2.2"
}
}