-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
104 lines (104 loc) · 3.04 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
{
"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": [
"ES2019",
"dom"
]
}
},
"peerDependencies": {},
"dependencies": {},
"devDependencies": {
"@angular-devkit/build-angular": "^14.2.1",
"@angular/animations": "^14.2.0",
"@angular/cli": "^14.2.1",
"@angular/common": "^14.2.0",
"@angular/compiler": "^14.2.0",
"@angular/core": "^14.2.0",
"@angular/forms": "^14.2.0",
"@angular/platform-browser": "^14.2.0",
"@angular/platform-browser-dynamic": "^14.2.0",
"@angular/router": "^14.2.0",
"@storybook/addon-actions": "^6.5.10",
"@storybook/addon-links": "^6.5.10",
"@storybook/addons": "^6.5.10",
"@storybook/angular": "^6.5.10",
"@storybook/storybook-deployer": "^2.8.12",
"@testing-library/angular": "12.1.2",
"@testing-library/dom": "7.20.0",
"@testing-library/jest-dom": "5.11.0",
"@types/jest": "^28.1.3",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.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": "^28.1.3",
"jest-preset-angular": "^12.2.2",
"lint-staged": "^10.2.11",
"msw": "^0.21.2",
"node-request-interceptor": "0.3.1",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"rxjs": "~7.5.6",
"rxjs-for-await": "^1.0.0",
"ts-jest": "^28.0.8",
"ts-node": "~8.3.0",
"tsd": "^0.23.0",
"tslib": "^2.3.1",
"typescript": "4.7.4",
"zone.js": "~0.11.4"
}
}