forked from timdeschryver/rx-query
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.01 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "rx-query",
"version": "0.0.0-semantically-released",
"description": "rx-query",
"author": "Tim Deschryver",
"repository": {
"type": "git",
"url": "git+https://github.com/timdeschryver/rx-query.git"
},
"bugs": {
"url": "https://github.com/timdeschryver/rx-query/issues"
},
"homepage": "https://github.com/timdeschryver/rx-query#readme",
"license": "MIT",
"keywords": [
"RxJS",
"Reactive",
"State"
],
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"files": [
"package.json",
"README.md",
"dist"
],
"private": false,
"scripts": {
"ng": "ng",
"start": "ng serve",
"build:angular": "ng build",
"test": "jest",
"test:types": "tsd",
"lint": "eslint \"./**/*.{js,ts}\"",
"predist": "npm run test",
"dist": "npm run dist:clean && npm run dist:build",
"dist:build": "npm run dist:build:cjs && npm run dist:build:esm",
"dist:build:bundle": "webpack --config webpack.config.js && webpack --config webpack.config.js --env.production",
"dist:build:cjs": "tsc -p tsconfig-dist-cjs.json",
"dist:build:esm": "tsc -p tsconfig-dist-esm.json",
"dist:clean": "rimraf dist && rimraf *.tgz",
"postdist": "npm run test:types",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"deploy-storybook": "storybook-to-ghpages",
"docs": "npx docs-md ./rx-query/index.ts"
},
"tsd": {
"directory": "rx-query",
"compilerOptions": {
"lib": [
"es2018",
"dom"
]
}
},
"peerDependencies": {
"rxjs": "^6.0.0"
},
"dependencies": {},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1000.0",
"@angular/animations": "~10.0.0",
"@angular/cli": "~10.0.0",
"@angular/common": "~10.0.0",
"@angular/compiler": "~10.0.0",
"@angular/compiler-cli": "~10.0.0",
"@angular/core": "~10.0.0",
"@angular/forms": "~10.0.0",
"@angular/platform-browser": "~10.0.0",
"@angular/platform-browser-dynamic": "~10.0.0",
"@angular/router": "~10.0.0",
"@babel/core": "^7.11.1",
"@storybook/addon-actions": "^5.3.19",
"@storybook/addon-links": "^5.3.19",
"@storybook/addon-notes": "^5.3.19",
"@storybook/addons": "^5.3.19",
"@storybook/angular": "^5.3.19",
"@storybook/storybook-deployer": "^2.8.6",
"@testing-library/angular": "10.0.0",
"@testing-library/dom": "7.20.0",
"@testing-library/jest-dom": "5.11.0",
"@types/jest": "^26.0.3",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.0",
"babel-loader": "^8.1.0",
"cpy-cli": "^3.1.1",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.18.0",
"husky": "^4.2.5",
"jest": "^26.1.0",
"jest-preset-angular": "^8.2.1",
"lint-staged": "^10.2.11",
"msw": "^0.21.2",
"node-request-interceptor": "0.3.1",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"rxjs": "~6.5.5",
"rxjs-for-await": "^0.0.2",
"ts-jest": "^26.1.1",
"ts-node": "~8.3.0",
"tsd": "^0.13.1",
"tslib": "^2.0.0",
"typescript": "^3.9.6",
"zone.js": "~0.10.3"
}
}