-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.13 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
{
"name": "@apmg/mimas",
"description": "A React component that takes an image endpoint from APM's APIs and returns a proper image with srcset.",
"version": "2.0.1",
"main": "dist/index.js",
"module": "dist/index.js",
"license": "MIT",
"files": [
"dist",
"README.md"
],
"keywords": [
"image",
"react",
"apm",
"media"
],
"repository": {
"type": "git",
"url": "https://github.com/APMG/apm-mimas"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "jest --watch",
"test:ci": "jest",
"test:coverage": "jest --coverage",
"eslint": "eslint .",
"prettier": "prettier --check '**/**.js'",
"prettier:fix": "prettier --check '**/**.js' --write",
"clean": "rimraf node_modules dist package-lock.json yarn.lock"
},
"husky": {
"hooks": {
"pre-commit": "yarn eslint && yarn prettier",
"pre-push": "yarn eslint && yarn prettier && yarn test:ci"
}
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"peerDependencies": {
"next": "^12",
"react": "^17"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@testing-library/jest-dom": "^5.4.0",
"@testing-library/react": "^10.0.2",
"audit-ci": "^6.4.0",
"babel-eslint": "^10.0.3",
"babel-polyfill": "^6.26.0",
"classnames": "^2.2.6",
"eslint": "^6.8.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.3",
"husky": "^1.3.1",
"jest": "^26.6.3",
"jest-prop-type-error": "^1.1.0",
"prettier": "1.16.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"rollup": "^1.31.0",
"rollup-plugin-babel": "^4.3.3"
},
"dependencies": {
"loading-attribute-polyfill": "^1.5.4",
"prop-types": "^15.7.2"
},
"resolutions": {
"ansi-regex": "^5.0.1",
"json-schema": "^0.4.0",
"minimatch": "^3.0.5",
"node-notifier": "^8.0.1"
}
}