forked from asispts/react-lte
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.53 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
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "react-lte",
"description": "AdminLTE v3 template for ReactJS",
"keywords": [
"AdminLTE",
"admin-lte",
"react",
"reactjs",
"admin",
"administrator",
"template",
"bootstrap",
"reactstrap",
"component",
"components",
"react-component",
"ui"
],
"version": "0.1.0-dev",
"private": false,
"license": "MIT",
"author": {
"name": "Asis Pattisahusiwa",
"email": "[email protected]",
"url": "https://github.com/pattisahusiwa"
},
"homepage": "https://pattisahusiwa.github.io/react-lte",
"repository": {
"url": "https://github.com/pattisahusiwa/react-lte"
},
"bugs": {
"url": "https://github.com/pattisahusiwa/react-lte/issues"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.31",
"@fortawesome/free-regular-svg-icons": "^5.15.1",
"@fortawesome/free-solid-svg-icons": "^5.15.0",
"@fortawesome/react-fontawesome": "^0.1.11",
"admin-lte": "^3.0.5",
"bootstrap": "^4.5.2",
"classnames": "^2.2.6",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.3",
"reactstrap": "^8.6.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.5",
"@testing-library/react": "^11.0.4",
"@testing-library/user-event": "^12.1.6",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-simple-import-sort": "^5.0.3",
"node-sass": "^4.14.1",
"prettier": "^2.1.2",
"pretty-quick": "^3.0.2",
"react-app-rewire-alias": "^0.1.6",
"react-app-rewired": "^2.1.6"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-scripts eject",
"cs": "prettier -c .",
"cs:fix": "prettier -w .",
"lint": "eslint --ext .jsx --ext .js .",
"lint:fix": "eslint --fix --ext .jsx --ext .js .",
"coverage": "pnpm test -- --coverage --testPathIgnorePatterns=/src/__tests__/"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"files": [
"/public/*",
"/src/*"
],
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!**/__tests__/**",
"!**/index.jsx"
]
}
}