-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.89 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.89 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
{
"name": "@openemp/styleguide",
"repository": "git@github.com:openemp/openemp-ui-styleguide.git",
"author": "OpenEMP",
"license": "MIT",
"version": "0.0.2",
"scripts": {
"start": "webpack-dev-server",
"build": "webpack --mode=production",
"analyze": "webpack --mode=production --env.analyze=true",
"lint": "eslint src",
"prettier": "prettier --write './**'",
"test": "jest --passWithNoTests",
"watch-tests": "jest --watch",
"coverage": "jest --coverage"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && concurrently yarn:test yarn:lint"
}
},
"dependencies": {
"@date-io/date-fns": "^1.3.13",
"@material-ui/core": "^4.10.1",
"@material-ui/icons": "^4.9.1",
"cors": "^2.8.5",
"date-fns": "^2.14.0",
"express": "^4.19.2",
"formik": "^2.1.4",
"formik-material-ui": "^2.0.0-beta.1",
"formik-material-ui-pickers": "0.0.8",
"jss": "^10.3.0",
"jss-rtl": "^0.3.0",
"material-design-icons-iconfont": "^5.0.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"systemjs-webpack-interop": "^2.1.1",
"typeface-roboto": "0.0.75",
"yup": "^0.29.1"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.10.0",
"@babel/plugin-proposal-object-rest-spread": "7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@testing-library/react": "^10.0.4",
"@types/jest": "^25.2.3",
"autoprefixer": "10.4.16",
"babel-core": "6.26.3",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.0.1",
"babel-loader": "^8.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^5.2.0",
"copy-webpack-plugin": "^6.0.1",
"css-loader": "^6.9.0",
"dotenv": "^8.2.0",
"dotenv-webpack": "^8.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-webpack": "^0.12.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^2.5.1",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"jest-cli": "^26.0.1",
"node-sass": "^9.0.0",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"sass-loader": "^8.0.2",
"style-loader": "^1.2.1",
"unused-files-webpack-plugin": "^3.4.0",
"webpack": "^5.94.0",
"webpack-bundle-analyzer": "^4.10.1",
"webpack-cli": "^5.1.4",
"webpack-config-single-spa-react": "^4.0.5",
"webpack-dev-server": "^5.0.4",
"webpack-merge": "^4.2.2"
},
"main": "src/index.js"
}