-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.37 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
{
"name": "smart-components-dinkar",
"version": "1.5.0",
"description": "This repository contains a collection of smart components designed to enhance your web application development by providing reusable and efficient solutions for common UI patterns.",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/exports.d.ts",
"keywords": [
"smart-components",
"dinkar",
"smart-components-dinkar",
"smart-dinkar"
],
"author": "Aakash Dinkar aakashdinkarh@gmail.com",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/aakashdinkarh/smart-components-dinkar"
},
"scripts": {
"build-lib-dev": "webpack --mode development",
"build-lib-prod": "webpack --mode production",
"start": "npx react-scripts start",
"build": "npx react-scripts build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"eslint_file": "eslint",
"stylelint": "npx stylelint \"**/*.css\"",
"stylelint:fix": "npx stylelint \"**/*.css\" --fix"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.2.0",
"react-dom": "^17.0.0 || ^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.7",
"@babel/preset-react": "^7.23.3",
"@types/mixpanel-browser": "^2.49.1",
"@types/react": "^18.2.47",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"babel-loader": "^9.1.3",
"css-loader": "^6.8.1",
"eslint": "^8.57.0",
"eslint-plugin-eslint-plugin": "^5.2.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-simple-import-sort": "^10.0.0",
"prettier": "^3.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.21.1",
"style-loader": "^3.3.3",
"stylelint": "^16.1.0",
"stylelint-config-standard": "^36.0.0",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"sideEffects": false,
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"mixpanel-browser": "^2.54.0",
"react-helmet": "^6.1.0",
"web-vitals": "^4.2.2"
}
}