-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
130 lines (130 loc) · 3.26 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "found",
"version": "0.4.0-alpha.7",
"description": "Extensible route-based routing for React applications",
"files": [
"lib"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "rimraf lib && babel src -d lib && cpy types/*.d.ts lib",
"format": "eslint --fix . && npm run prettier -- --write",
"lint": "eslint . && npm run prettier -- -l",
"prepublish": "npm run build",
"prettier": "prettier --ignore-path .eslintignore '**/*.{md,ts,tsx}'",
"tdd": "jest --watch",
"test": "npm run lint && npm run test:ts && npm run testonly -- --coverage",
"test:ts": "dtslint types",
"testonly": "jest --runInBand --verbose"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"globOptions": {
"matchBase": false
},
"linters": {
"**/*.js": [
"eslint --fix",
"git add"
],
"**/*.{md,ts,tsx}": [
"prettier --write",
"git add"
],
"README.md": [
"doctoc",
"git add"
]
}
},
"prettier": {
"printWidth": 79,
"singleQuote": true,
"trailingComma": "all"
},
"jest": {
"collectCoverageFrom": [
"src/**"
],
"setupFiles": [
"<rootDir>/test/setup.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/4Catalyzer/found.git"
},
"keywords": [
"react",
"router",
"routes",
"routing"
],
"author": "4Catalyzer",
"license": "MIT",
"bugs": {
"url": "https://github.com/4Catalyzer/found/issues"
},
"homepage": "https://github.com/4Catalyzer/found#readme",
"dependencies": {
"babel-runtime": "^6.26.0",
"farce": "^0.2.6",
"is-promise": "^2.1.0",
"lodash": "^4.17.11",
"path-to-regexp": "^1.7.0",
"prop-types": "^15.6.2",
"prop-types-extra": "^1.1.0",
"react-redux": "^6.0.0",
"react-static-container": "^1.0.2",
"redux": "^4.0.1",
"warning": "^4.0.2"
},
"peerDependencies": {
"react": ">=16.4.0"
},
"devDependencies": {
"@types/react": "^16.7.17",
"@types/react-dom": "^16.0.11",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"codecov": "^3.1.0",
"cpy-cli": "^2.0.0",
"delay": "^4.1.0",
"doctoc": "^1.4.0",
"dtslint": "^0.5.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"eslint": "^5.10.0",
"eslint-config-4catalyzer-react": "^0.9.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"husky": "^1.2.1",
"jest": "^23.6.0",
"lint-staged": "^8.1.0",
"p-defer": "^2.0.0",
"prettier": "^1.15.3",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-proxy": "^3.0.0-alpha.1",
"react-stand-in": "^4.0.0-beta.14",
"react-test-renderer": "^16.6.3",
"rimraf": "^2.6.2",
"typescript": "^3.2.2"
}
}