forked from yanyunchangfeng/learn-rxjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.59 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
52
53
54
55
56
{
"name": "learning-rxjs",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --env=dev",
"build": "webpack --env=prod",
"test": "jest --config=config/jest.config.js",
"lint": "tslint -p tsconfig.json",
"fix": "tslint --force --fix -p tsconfig.json",
"cypress:open": "cypress open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yanyunchangfeng/learning-rxjs.git"
},
"keywords": [],
"author": "yanyunchangfeng <[email protected]> (https://github.com/yanyunchangfeng)",
"license": "MIT",
"bugs": {
"url": "https://github.com/yanyunchangfeng/learning-rxjs/issues"
},
"homepage": "https://github.com/yanyunchangfeng/learning-rxjs#readme",
"dependencies": {
"rxjs": "6.5.2"
},
"devDependencies": {
"@types/jest": "24.0.13",
"autoprefixer": "9.6.0",
"clean-webpack-plugin": "2.0.2",
"css-loader": "3.0.0",
"cypress": "3.3.1",
"file-loader": "4.0.0",
"html-loader": "0.5.5",
"html-webpack-plugin": "3.2.0",
"jest": "24.8.0",
"mini-css-extract-plugin": "0.7.0",
"node-sass": "4.12.0",
"optimize-css-assets-webpack-plugin": "5.0.1",
"postcss-loader": "3.0.0",
"sass-loader": "7.1.0",
"style-loader": "0.23.1",
"svg-url-loader": "3.0.0",
"terser-webpack-plugin": "1.3.0",
"ts-jest": "24.0.2",
"ts-loader": "6.0.1",
"tslint": "5.16.0",
"typescript": "3.4.5",
"url-loader": "2.0.1",
"webpack": "4.32.2",
"webpack-cli": "3.3.2",
"webpack-dev-server": "3.4.1",
"webpack-merge": "4.2.1"
}
}