-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 934 Bytes
/
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
{
"name": "botbuilder_backend",
"version": "1.0.0",
"description": "",
"main": "./dist/src/server.js",
"scripts": {
"start": "node ./dist/src/server.js",
"build": "tsc",
"test": "jest --coverage"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/bcrypt": "^3.0.0",
"@types/cors": "^2.8.9",
"@types/express": "^4.17.11",
"@types/jsonwebtoken": "^8.5.0",
"@types/node-schedule": "^1.3.1",
"@types/uuid": "^8.3.0",
"bcrypt": "^5.0.0",
"botbuilder-share": "0.0.21",
"cors": "^2.8.5",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.11.15",
"node-fetch": "^2.6.1",
"node-schedule": "^2.0.0",
"react-flow-renderer": "^9.4.4",
"typescript": "^4.2.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node-fetch": "^2.5.8",
"jest": "^26.6.3",
"ts-jest": "^26.5.6"
}
}