-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
105 lines (105 loc) · 2.74 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
101
102
103
104
105
{
"name": "backoffice",
"version": "4.4.0",
"main": "dist/app.js",
"author": "Hans Christian Reinl <[email protected]>",
"license": "MIT",
"scripts": {
"start": "react-scripts start",
"js:test": "react-scripts test",
"js:test:coverage": "yarn js:test --coverage",
"js:build": "react-scripts build",
"ts:lint": "eslint ./src/ --ext ts,tsx",
"test": "yarn lint && yarn js:test",
"test:coverage": "CI=true yarn js:test:coverage && yarn test:codecov",
"test:codecov": "codecov",
"lint": "yarn ts:lint",
"build": "yarn js:build",
"build:ts": "NODE_ENV=production tsc -p tsconfig.build.json",
"prepublishOnly": "rm -rf ./dist && yarn build:ts"
},
"dependencies": {
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/pickers": "4.0.0-alpha.12",
"@material-ui/styles": "^4.11.3",
"@types/react-dom": "^17.0.3",
"classnames": "^2.3.1",
"date-fns": "^2.20.1",
"init-uuid": "^1.2.0",
"is-url": "^1.2.4",
"isemail": "^3.2.0",
"jss": "^10.6.0",
"keycode": "^2.2.0",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-jss": "^10.6.0",
"react-router-dom": "^5.2.0"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@types/classnames": "^2.2.11",
"@types/enzyme": "^3.10.8",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/is-url": "^1.2.28",
"@types/jest": "^26.0.22",
"@types/lodash": "^4.14.168",
"@types/react-router-dom": "^5.1.7",
"@typescript-eslint/parser": "^4.21.0",
"babel-polyfill": "^6.26.0",
"codecov": "^3.8.1",
"concurrently": "^6.0.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"enzyme-to-json": "^3.6.2",
"eslint": "^7.24.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.23.2",
"express": "^4.17.1",
"jest-enzyme": "^7.1.2",
"prettier": "^2.2.1",
"react-mock-router": "^1.0.15",
"react-scripts": "^4.0.3",
"typescript": "^4.2.4",
"walls": "^2.3.0"
},
"keywords": [
"react",
"reactjs",
"react-router",
"component-library",
"crud",
"crud-gui",
"dashboard",
"material-ui"
],
"jest": {
"watchPathIgnorePatterns": [
"node_modules",
"build",
"coverage",
"dist"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}