-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 915 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 915 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
{
"name": "rxjs",
"version": "1.0.0",
"description": "Set of theoretical concepts and examples of Reactive Programming with RxJs",
"main": "index.js",
"scripts": {
"tsc:watch": "tsc --watch",
"test:watch": "jest --watch"
},
"keywords": [
"JavaScript",
"TypeScript",
"RxJs",
"Node"
],
"author": "Edoardo Oranger (mrOranger)",
"license": "ISC",
"dependencies": {
"moment": "^2.30.1",
"rxjs": "^7.8.1",
"uuid": "^10.0.0"
},
"devDependencies": {
"@babel/core": "^7.25.8",
"@babel/preset-env": "^7.25.8",
"@babel/preset-typescript": "^7.25.7",
"@types/jest": "^29.5.13",
"@types/uuid": "^10.0.0",
"babel-jest": "^29.7.0",
"jest": "^29.7.0"
}
}