-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
80 lines (80 loc) · 2.27 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
{
"name": "chris_store_ui",
"version": "0.2.1",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"lint": "eslint src/**/*.{jsx,js}",
"lint:fix": "eslint --fix src/**/*.{jsx,js}",
"ci": "concurrently --kill-others-on-fail \"yarn:test\" \"yarn:lint\"",
"serve": "sirv build --cors --single --host --port 3000",
"deploy": "yarn run build && yarn run serve",
"precommit": "lint-staged",
"test:staged": "cross-env CI=true react-scripts test --env=jsdom --findRelatedTests"
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"dependencies": {
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-react": "^7.14.5",
"@fnndsc/chrisstoreapi": "^3.0.1",
"@patternfly/patternfly": "^4.59.1",
"@patternfly/react-core": "^4.75.2",
"@patternfly/react-icons": "^4.7.16",
"@patternfly/react-table": "^4.27.7",
"classnames": "^2.2.6",
"core-js": "^2.5.7",
"cross-env": "^5.2.0",
"dompurify": "^2.2.7",
"email-validator": "^2.0.4",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"husky": "^0.14.3",
"lint-staged": "^7.2.0",
"lodash": "^4.17.21",
"marked": "^4.0.10",
"moment": "^2.29.4",
"prop-types": "^15.6.2",
"react": "^17.0.2",
"react-bootstrap": "^0.32.1",
"react-dom": "^17.0.2",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.3",
"react-test-renderer": "^16.4.1",
"rxjs": "^6.3.3",
"sirv-cli": "^1.0.8",
"sortabular": "^1.6.0",
"table-resolver": "^4.1.1",
"undux": "^5.2.0"
},
"resolutions": {
"react-scripts/postcss-preset-env/postcss-custom-properties": "^10.0.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.3.2"
}
}