-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 903 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 903 Bytes
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
{
"name": "XCDaaS",
"version": "0.1.0",
"description": "XMPP Connection Discovery as a Service",
"scripts": {
"start": "node dist/index.js",
"dev": "nodemon --exec ./node_modules/.bin/ts-node -- ./src/index.ts",
"build": "tsc"
},
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"lodash.isempty": "^4.4.0",
"xmpp-connection-discovery": "^0.2.0"
},
"devDependencies": {
"@types/cors": "^2.8.6",
"@types/express": "^4.17.1",
"@types/lodash.isempty": "^4.4.6",
"@types/node": "^12.7.4",
"nodemon": "^1.19.2",
"prettier": "^1.18.2",
"ts-node": "^8.3.0",
"typescript": "^3.6.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,json,css,md}": [
"prettier --single-quote --trailing-comma all --write",
"git add"
]
}
}