Skip to content

Commit 7147282

Browse files
author
Simon Planinschek
committed
Fixed typo, added src to linter and add react and react-dom as dev dependencies
1 parent 61eed02 commit 7147282

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

package.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
"name": "@aboutbits/material-design-icons",
33
"version": "0.1.0",
44
"description": "Material design icon components for React",
5-
"main": "dist/index.ts",
5+
"main": "dist/index.js",
66
"scripts": {
77
"build": "tsc",
88
"generate": "rm -rf src/* && node generator.js",
9-
"lint": "eslint --ext js,ts,tsx ./generator.js",
9+
"lint": "eslint --ext js,ts,tsx src ./generator.js",
1010
"lint:fix": "npm run lint -- --fix",
1111
"test": "jest --config jestconfig.json --passWithNoTests",
1212
"prepare": "npm run build",
@@ -39,6 +39,7 @@
3939
"homepage": "https://github.com/aboutbits/react-material-icons#readme",
4040
"devDependencies": {
4141
"@types/jest": "^26.0.14",
42+
"@types/react": "^16.9.50",
4243
"@typescript-eslint/parser": "^4.3.0",
4344
"@typescript-eslint/eslint-plugin": "^4.3.0",
4445
"axios": "^0.20.0",
@@ -50,7 +51,9 @@
5051
"eslint-plugin-prettier": "^3.1.4",
5152
"prettier": "^2.1.2",
5253
"ts-jest": "^26.4.1",
53-
"typescript": "^4.0.3"
54+
"typescript": "^4.0.3",
55+
"react": "^16.13.1",
56+
"react-dom": "^16.13.1"
5457
},
5558
"peerDependencies": {
5659
"react": "^16.13.1",

0 commit comments

Comments
 (0)