-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 2.87 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 2.87 KB
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
101
102
103
104
105
106
107
108
109
{
"name": "storefront",
"version": "1.0.1",
"author": "API Suite",
"description": "The Storefront",
"dependencies": {
"@apisuite/fe-base": "1.0.0-next.7",
"@material-ui/icons": "4.5.1",
"@material-ui/lab": "4.0.0-alpha.56",
"axios": "0.23.0",
"clsx": "1.1.1",
"deepmerge": "^4.2.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hook-form": "7.11.0",
"react-image-gallery": "1.0.9",
"react-router": "5.1.2",
"react-router-dom": "5.1.2",
"rich-markdown-editor": "11.14.0",
"storeon": "3.1.4",
"styled-components": "5.3.0",
"typescript": "4.4.3"
},
"devDependencies": {
"@apisuite/extension-ui-types": "1.0.5",
"@apisuite/fe-base": "1.0.0-next.7",
"@babel/core": "7.11.4",
"@material-ui/icons": "4.5.1",
"@material-ui/lab": "4.0.0-alpha.56",
"@semantic-release/git": "^9.0.0",
"@testing-library/jest-dom": "5.14.1",
"@testing-library/react": "11.2.7",
"@types/history": "4.7.8",
"@types/jest": "26.0.10",
"@types/react-dom": "17.0.3",
"@types/react-image-gallery": "1.0.2",
"@types/react-router-dom": "5.1.7",
"@types/react-router": "5.1.7",
"@types/react": "17.0.4",
"@types/redux-logger": "3.0.8",
"@types/swagger-ui-react": "3.35.0",
"@typescript-eslint/eslint-plugin": "4.22.0",
"@typescript-eslint/parser": "4.22.0",
"babel-loader": "8.1.0",
"babel-preset-react-app": "9.1.2",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-jest": "23.20.0",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-react": "7.20.6",
"identity-obj-proxy": "3.0.0",
"node-sass": "6.0.1",
"prettier": "2.1.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hook-form": "7.11.0",
"react-router-dom": "5.1.2",
"react-router": "5.1.2",
"react-scripts": "4.0.3",
"sass-loader": "10.0.1",
"semantic-release": "^17.4.4",
"ts-jest": "26.2.0",
"typescript": "4.4.3"
},
"scripts": {
"build": "react-scripts build",
"eject": "react-scripts eject",
"format": "prettier --write \"src/{,**/}*.ts{,x}\"",
"lint:fix": "npm run lint -- --fix",
"lint": "eslint -c .eslintrc.js --ext .js,.jsx,.ts,.tsx .",
"start": "react-scripts start",
"test": "react-scripts test"
},
"watch": {
"build": {
"extensions": "ts,tsx,scss,json",
"ignore": "src/constants/info.ts",
"quiet": false,
"patterns": [
"src"
]
}
},
"prettier": {
"semi": false,
"singleQuote": true
},
"lint-staged": {
"{src}/{,**/}*.ts{,x}": [
"prettier --write",
"git add"
]
},
"keywords": [
"React",
"TypeScript"
],
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}