-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
72 lines (72 loc) · 2.21 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
{
"name": "@openemp/dashboard",
"repository": "[email protected]:openemp/openemp-ui-dashboard.git",
"author": "OpenEMP",
"license": "MIT",
"version": "0.0.1",
"description": "OpenEMP UI Dasboard MF",
"scripts": {
"lint": "eslint src",
"start": "webpack-dev-server",
"test": "jest --passWithNoTests",
"build": "webpack --mode=production",
"analyze": "webpack --mode=production --env.analyze=true",
"prettier": "prettier --write './**'",
"watch-tests": "jest --watch",
"coverage": "jest --coverage"
},
"dependencies": {
"@openemp/styleguide": "^0.0.2",
"@reach/router": "1.3.3",
"copy-webpack-plugin": "5.1.1",
"material-ui": "^0.20.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router": "^5.1.2",
"single-spa-react": "^2.14.0"
},
"devDependencies": {
"@openemp/styleguide": "^0.0.2",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "7.9.5",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@testing-library/react": "^10.0.2",
"@types/jest": "^29.5.11",
"autoprefixer": "10.4.16",
"babel-core": "6.26.3",
"babel-eslint": "^11.0.0-beta.2",
"babel-jest": "^25.4.0",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "3.0.0",
"concurrently": "^5.1.0",
"css-loader": "^6.8.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-config-react-important-stuff": "^2.0.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"postcss-loader": "7.3.4",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"react-router-dom": "^5.1.2",
"single-spa-react": "^2.14.0",
"style-loader": "^1.1.4",
"systemjs-webpack-interop": "^2.0.0",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-config-single-spa-react": "4.0.5",
"webpack-dev-server": "^5.0.4",
"webpack-merge": "^4.2.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && concurrently yarn:test yarn:lint"
}
}
}