-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·54 lines (54 loc) · 1.37 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
{
"name": "containrz",
"version": "0.0.7",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"license": "MIT",
"repository": {
"url": "https://github.com/nicreichert/containrz"
},
"author": {
"name": "Nic Reichert",
"url": "https://github.com/nicreichert"
},
"scripts": {
"start": "tsc -w --p tsconfig.build.json",
"build": "rm -rf dist && tsc",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"rxjs": "^6.5.2",
"utility-types": "^3.7.0"
},
"peerDependencies": {
"react": ">=16.0.0"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.6",
"@babel/preset-typescript": "^7.9.0",
"@types/jest": "^24.0.12",
"@types/node": "^10.11.3",
"@types/react": "^16.9.34",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^1.11.0",
"eslint-config-prettier": "^5.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.2",
"jest": "^24.8.0",
"jest-localstorage-mock": "^2.4.2",
"prettier": "^1.18.2",
"prettier-standard": "^9.1.1",
"react-hooks-testing-library": "^0.5.0",
"react-test-renderer": "^16.8.6",
"ts-jest": "^24.0.2",
"typescript": "^3.4.4"
},
"jest": {
"setupFiles": [
"jest-localstorage-mock"
]
}
}