-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.5 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
{
"name": "rxjstest",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server",
"test": "echo \"Error: no test specified\" && exit 1",
"build--prod": "webpack --mode production",
"build--dev": "webpack --mode development",
"start": "ts-node-dev --respawn --transpileOnly src_ts/index.ts",
"style:prettier": "prettier --write \"src_ts/**/*.ts\"",
"style:lint": "tslint -p tsconfig.json -c tslint.json",
"commit": "git-cz"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/core-js": "^2.5.3",
"@types/es6-shim": "^0.31.39",
"@types/node": "^13.13.4",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-loader": "^7.1.5",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"commitizen": "^4.1.2",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^7.0.0",
"html-webpack-plugin": "^4.2.1",
"prettier": "^2.0.5",
"rxjs": "^6.5.5",
"rxjs-compat": "^6.5.5",
"rxjs-es": "^5.0.0-beta.12",
"ts-loader": "^7.0.1",
"ts-node": "^8.9.1",
"ts-node-dev": "^1.0.0-pre.44",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.8.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"dependencies": {
"tslint": "^6.1.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}