-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
64 lines (64 loc) · 1.63 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
{
"name": "react-view-slot",
"version": "1.0.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": {
"name": "Robert Pasiński",
"email": "[email protected]",
"url": "https://github.com/robik"
},
"description": "Dynamic view slots for React",
"keywords": ["react", "view", "plug", "slot"],
"license": "MIT",
"scripts": {
"watch": "tsc --watch -p tsconfig.json",
"build": "rm -r dist && tsc -p tsconfig.json",
"test": "jest"
},
"peerDependencies": {
"react": "^16.8"
},
"devDependencies": {
"@types/enzyme": "^3.10.5",
"@types/jest": "^25.1.3",
"@types/lodash.sortby": "^4.7.6",
"@types/react": "^16.9.22",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^2.20.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-react-app": "^5.2.0",
"eslint-plugin-flowtype": "^4.6.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^2.4.0",
"jest": "^25.1.0",
"react": "^16.8",
"react-dom": "^16.8",
"react-test-renderer": "^16.12.0",
"typescript": "^3.8.2"
},
"dependencies": {
"lodash.sortby": "^4.7.0"
},
"jest": {
"setupFiles": [
"<rootDir>/tests/test-setup.js"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/tests/test-transpile.js"
},
"testMatch": [
"<rootDir>/tests/**/*.test.(ts|tsx|js)"
]
}
}