-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.43 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
{
"name": "react-responsive-image",
"version": "0.0.1",
"description": "A minimal React component for responsive images.",
"main": "lib/index.js",
"scripts": {
"build": "rm -rf lib && rollup -c",
"test": "jest",
"typecheck": "tsc -p tsconfig.json"
},
"keywords": [],
"author": "Aaron Resing <[email protected]>",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.1",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^12.1.2",
"@types/jest": "^28.1.3",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.1.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.1.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.2",
"prettier": "^2.7.1",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"rollup": "^2.75.7",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.32.1",
"ts-jest": "^28.0.5",
"typescript": "4.4.2"
},
"peerDependencies": {
"react": "^17.0.0",
"react-dom": "^17.0.0"
},
"prettier": {
"arrowParens": "always",
"endOfLine": "lf",
"semi": false,
"trailingComma": "none"
}
}