-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
79 lines (79 loc) · 1.92 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
{
"name": "react-aqueduct",
"version": "0.9.2",
"files": [
"lib"
],
"main": "lib/react-aqueduct.js",
"author": "Sergey Korchinskiy <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/kserjey/react-aqueduct.git"
},
"license": "MIT",
"scripts": {
"lint": "eslint src",
"eslint-check": "eslint --print-config .eslintrc.js | eslint-config-prettier-check",
"test": "jest",
"build": "rollup -c",
"prepare": "npm run build"
},
"jest": {
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.test.js"
],
"testURL": "http://localhost"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix",
"git add"
],
"*.{json,md}": [
"prettier --write",
"git add"
]
},
"peerDependencies": {
"react": ">=16"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"eslint": "^5.12.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.4.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.12.3",
"husky": "^1.3.1",
"jest": "^23.6.0",
"lint-staged": "^8.1.0",
"prettier": "^1.15.3",
"prettier-eslint": "^8.8.2",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-testing-library": "^5.4.4",
"rollup": "^1.1.0",
"rollup-plugin-babel": "^4.3.0",
"rollup-plugin-size-snapshot": "^0.8.0"
},
"dependencies": {
"@babel/runtime": "^7.2.0",
"hoist-non-react-statics": "^3.2.1",
"lodash": "^4.17.10",
"prop-types": "^15.6.2"
}
}