-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.08 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
42
43
44
45
{
"name": "be-diskreta",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "^16.20.0",
"npm": "8.15.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "ts-node-dev --files -r dotenv/config src",
"build": "npm install && npx -p typescript tsc",
"start": "node build"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.1",
"bip39": "^3.0.4",
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"express": "^4.17.3",
"http-errors": "^2.0.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.3.1",
"node-forge": "^1.3.1",
"socket.io": "^4.4.1",
"typescript": "^4.6.3"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/crypto-js": "^4.1.1",
"@types/express": "^4.17.13",
"@types/http-errors": "^1.8.2",
"@types/jsonwebtoken": "^8.5.8",
"@types/node-forge": "^1.0.2",
"dotenv": "^16.0.0",
"jest": "^27.5.1",
"supertest": "^6.2.2",
"ts-jest": "^27.1.4",
"ts-node-dev": "^2.0.0"
}
}