-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 800 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 800 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
{
"name": "@conversationalcomponents/sdk",
"version": "0.1.12",
"description": "Conversional Components nodejs sdk",
"repository": "https://github.com/ConversationalComponents/coco-sdk-nodejs.git",
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"start": "npm run build:live",
"build": "tsc -p . -d",
"build:live": "nodemon --watch 'src/**/*.ts' --exec \"ts-node\" src/index.ts"
},
"keywords": [],
"author": "alex@a-i.com",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.11",
"@types/node": "^14.14.31",
"@types/request": "^2.48.5",
"@types/uuid": "^8.3.0",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.2.2"
},
"dependencies": {
"request": "^2.88.0",
"uuid": "^8.3.2"
}
}