-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
80 lines (80 loc) · 2.5 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": "@openemp/drawer",
"repository": "[email protected]:openemp/openemp-ui-drawer.git",
"author": "OpenEMP",
"license": "MIT",
"version": "0.0.1",
"description": "OpenEMP UI Drawer 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",
"clsx": "^1.1.0",
"nanoevents": "^5.1.7",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router": "^5.2.0",
"single-spa-react": "^2.14.0",
"systemjs-webpack-interop": "^2.1.1"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "7.9.6",
"@babel/plugin-transform-runtime": "^7.10.1",
"@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.17",
"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.1",
"dotenv": "^8.2.0",
"dotenv-webpack": "^1.8.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-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",
"html-webpack-plugin": "^4.3.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"jest-cli": "^26.0.1",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"webpack": "^4.42.1",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^3.3.11",
"webpack-config-single-spa-react": "4.0.5",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^4.2.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && concurrently yarn:test yarn:lint"
}
}
}