-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 926 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 926 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
{
"name": "skill-template-nlp-adapter-express",
"version": "0.0.1",
"description": "This ExpressJS application is a template for Skill Developers to use as a starting point for writing an NLP Adapter Skill.",
"main": "src/app.ts",
"scripts": {
"start": "nodemon",
"start:debug": "nodemon --inspect src/app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"engines": {
"node": ">=16"
},
"dependencies": {
"@soulmachines/smskillsdk": "^1.3.0-rc.0",
"axios": "^1.2.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"follow-redirects": "^1.15.2",
"fs": "^0.0.1-security",
"mongoose": "^6.8.1",
"qs": "^6.11.0",
"request": "^2.88.2"
},
"devDependencies": {
"@sentry/webpack-plugin": "^1.20.0",
"@types/express": "^4.17.14",
"@types/node": "^18.8.4",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}