-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.43 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
{
"version": "2.0.0",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=12"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --passWithNoTests",
"test:watch": "tsdx test --watch",
"lint": "tsdx lint src",
"prepare": "tsdx build"
},
"peerDependencies": {
"react": ">=17",
"redux": "^4.2.0",
"redux-saga": "^1.2.1",
"redux-thunk": "^2.4.2"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"trailingComma": "all",
"printWidth": 80,
"tabWidth": 4,
"useTabs": false,
"semi": true,
"singleQuote": false,
"bracketSpacing": true,
"jsxBracketSameLine": false,
"arrowParens": "always",
"requirePragma": false,
"insertPragma": false,
"proseWrap": "always"
},
"name": "@bornfight/aardvark",
"repository": {
"url": "https://github.com/bornfight/aardvark/",
"type": "git"
},
"author": "Bornfight",
"private": false,
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"module": "dist/aardvark.esm.js",
"devDependencies": {
"@testing-library/react-hooks": "^3.4.1",
"@types/lodash": "^4.14.152",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.2",
"@types/react-redux": "^7.1.9",
"@types/redux-mock-store": "^1.0.2",
"@types/uuid": "^8.0.0",
"axios-mock-adapter": "^1.18.2",
"husky": "^4.2.5",
"jest-mock-axios": "^3.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"redux": "^4.2.0",
"redux-mock-store": "^1.5.4",
"redux-saga": "^1.2.1",
"redux-thunk": "^2.4.2",
"reselect": "^4.0.0",
"ts-json-api": "^1.0.0",
"tsdx": "^0.13.2",
"tslib": "^2.0.0",
"typescript": "^3.9.2"
},
"dependencies": {
"autobind-decorator": "^2.4.0",
"axios": "^0.21.1",
"json-api-normalizer": "^0.4.16",
"jsona": "1.5.1",
"lodash": "^4.17.15",
"lodash-es": "^4.17.15",
"re-reselect": "^4.0.0",
"react-redux": "^8.0.5",
"uuid": "^8.0.0"
}
}