-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
51 lines (51 loc) · 1.18 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
46
47
48
49
50
51
{
"name": "typescript-rxjs-webpack",
"description": "Small generator for rxjs webpack projects",
"version": "4.0.0",
"homepage": "https://github.com/code0wl/typescript-rxjs-webpack",
"author": {
"name": "Oz",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/code0wl/typescript-rxjs-webpack.git"
},
"bugs": {
"url": "https://github.com/code0wl/typescript-rxjs-webpack/issues"
},
"license": "MIT",
"engines": {
"node": ">= 0.10.26",
"npm": ">=1.4.3"
},
"husky": {
"hooks": {
"pre-commit": "npm test"
}
},
"scripts": {
"prestart": "npm i",
"start": "webpack-dev-server",
"test": "jest",
"test:watch": "jest --watch"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"copy-webpack-plugin": "^5.1.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^4.3.8",
"jest": "^27.0.6",
"rxjs-marbles": "^7.0.1",
"style-loader": "^3.2.1",
"ts-jest": "^27.0.4",
"ts-loader": "^6.2.2",
"typescript": "^4.3.5",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"rxjs": "^7.3.0"
}
}