-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 748 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 748 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-starter",
"version": "1.0.0",
"description": "RxJS starter",
"main": "src/index.ts",
"scripts": {
"start": "webpack serve",
"lint": "eslint . --ext .ts"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^18.7.14",
"@types/webpack": "^5.28.0",
"@types/webpack-dev-server": "^4.1.0",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.2.1",
"rxjs-tslint": "^0.1.8",
"ts-loader": "^9.2.3",
"ts-node": "^10.2.1",
"typescript": "^5.0.2",
"webpack": "^5.76.2",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^4.2.1"
},
"dependencies": {
"rxjs": "^7.1.0"
}
}