-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.96 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
{
"name": "@tunneljs/tunnel",
"version": "1.1.6",
"description": "A Simple way to manage your application state.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/LFSCamargo/tunnel",
"author": "LFSCamargo",
"license": "MIT",
"scripts": {
"build:rollup": "rimraf /dist && rollup -c",
"prepublish": "yarn build:rollup",
"lint": "yarn build:rollup && eslint '*/**/*.{ts,tsx}' --fix",
"test": "jest"
},
"peerDependencies": {
"react": "^16.13.1"
},
"dependencies": {
"fbemitter": "^3.0.0",
"ramda": "^0.27.1",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@testing-library/jest-dom": "^5.11.10",
"@testing-library/react": "^11.2.5",
"@types/debug": "^4.1.5",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/fbemitter": "^2.0.32",
"@types/jest": "^26.0.22",
"@types/node": "^14.6.0",
"@types/ramda": "^0.27.14",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"commitlint": "^12.0.1",
"debug": "^4.1.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.3",
"eslint": "^7.7.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.3.2",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-sonarjs": "^0.6.0",
"jest": "^26.6.3",
"jest-enzyme": "^7.1.2",
"jest-localstorage-mock": "^2.4.8",
"prettier": "^2.1.1",
"rimraf": "^3.0.2",
"rollup": "^2.26.6",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^26.5.4",
"typescript": "^4.0.2"
}
}