-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
42 lines (42 loc) · 954 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
{
"name": "rxjslesson",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev:w": "webpack-dev-server -w --progress --colors",
"build": "webpack",
"test": "jest",
"test:watch": "npx jest --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"lodash": "^4.17.11",
"ramda": "^0.26.1",
"rxjs": "^6.3.2"
},
"devDependencies": {
"@types/lodash": "^4.14.122",
"@types/ramda": "^0.25.51",
"@types/jest": "^24.0.9",
"extract-text-webpack-plugin": "^3.0.2",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.6.0",
"pre-push": "^0.1.1",
"style-loader": "^0.23.0",
"ts-jest": "^23.10.4",
"ts-loader": "^5.1.1",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.0.3",
"webpack": "^4.19.0",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.8"
},
"pre-push": [
"build",
"test"
]
}