-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
40 lines (40 loc) · 1.08 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
{
"name": "rxjs-typescript-starter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --config webpack.dev.js",
"build": "webpack --config webpack.dev.js",
"test": "karma start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/javascriptru/rxjs-typescript-starter.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/javascriptru/rxjs-typescript-starter/issues"
},
"homepage": "https://github.com/javascriptru/rxjs-typescript-starter#readme",
"dependencies": {
"@types/karma": "3.0.2",
"rxjs": "6.5.1"
},
"devDependencies": {
"@types/jasmine": "3.3.12",
"@webpack-cli/init": "^0.2.2",
"babel-plugin-syntax-dynamic-import": "6.18.0",
"jasmine-marbles": "0.5.0",
"karma": "4.1.0",
"karma-chrome-launcher": "2.2.0",
"karma-jasmine": "2.0.1",
"karma-typescript": "4.0.0",
"ts-loader": "5.4.5",
"typescript": "3.4.5",
"webpack": "4.30.0",
"webpack-cli": "3.3.1",
"webpack-dev-server": "3.3.1"
}
}