-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1018 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
39
40
41
42
43
{
"name": "storage",
"version": "0.1.0",
"description": "Muzikie asset storage",
"main": "index.js",
"author": "Block Made GmbH",
"license": "ISC",
"scripts": {
"test": "npx jest ./src/test",
"start": "pm2 start dist/server.js",
"dev": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/server.ts",
"build": "tsc"
},
"keywords": [
"music",
"streamer",
"web3",
"blockchain"
],
"dependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^29.5.3",
"@types/multer": "^1.4.7",
"@types/node": "^20.4.2",
"@types/ws": "^8.5.5",
"cors": "^2.8.5",
"express": "^4.18.2",
"multer": "^1.4.5-lts.1",
"pm2": "^5.3.0",
"typescript": "^5.1.6"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/supertest": "^2.0.12",
"jest": "^29.6.1",
"jest-websocket-mock": "^2.4.0",
"mock-socket": "^9.2.1",
"nodemon": "^3.0.1",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1"
}
}