-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
41 lines (41 loc) · 1.18 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
{
"name": "node-js-proxy",
"version": "1.0.0",
"license": "SEE LICENSE IN LICENSE.md",
"scripts": {
"start": "ts-node server/index.ts",
"dev": "npm run dev:lint && npm run dev:start",
"dev:start": "nodemon server/index.ts",
"dev:lint": "eslint . --ext .ts",
"docs": "npm run docs:clean && npm run docs:generate",
"docs:clean": "npx rimraf docs",
"docs:generate": "npx typedoc"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/morgan": "^1.9.3",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"eslint": "^8.29.0",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"typedoc": "^0.23.22",
"typedoc-theme-hierarchy": "^3.0.2",
"typescript": "^4.8.4"
},
"dependencies": {
"@inworld/nodejs-sdk": "^0.9.2",
"@types/express": "^4.17.14",
"@types/node": "^18.11.9",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.2",
"express-joi-validation": "^5.0.1",
"joi": "^17.7.0",
"morgan": "^1.10.0",
"node-record-lpcm16": "^1.0.1",
"rimraf": "^3.0.2",
"split": "^1.0.1",
"uuid": "^8.3.2"
}
}