forked from philgresh/signdocs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
131 lines (131 loc) · 3.83 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "signdocs",
"repository": {
"type": "git",
"url": "git+https://github.com/philgresh/signdocs.git"
},
"engines": {
"node": "12.5.0",
"npm": "6.9.0"
},
"scripts": {
"postinstall": "webpack",
"watch": "webpack --watch --mode=development",
"start": "webpack-dev-server --open",
"commit": "git-cz",
"eslint": "eslint --fix frontend/",
"deploy": "eslint --fix frontend/ && git push heroku master",
"analyze": "source-map-explorer 'app/assets/javascripts/*.js'",
"dev": "concurrently \"bundle exec rails s\" \"npm run watch\""
},
"private": true,
"dependencies": {
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@fortawesome/fontawesome-svg-core": "^1.2.30",
"@fortawesome/free-brands-svg-icons": "^5.15.0",
"@fortawesome/free-solid-svg-icons": "^5.14.0",
"@fortawesome/react-fontawesome": "^0.1.11",
"@material-ui/styles": "^4.11.5",
"@mui/icons-material": "^5.15.13",
"@mui/material": "^5.15.13",
"@reduxjs/toolkit": "^1.4.0",
"babel-loader": "^8.1.0",
"clsx": "^1.1.1",
"faker": "^5.1.0",
"immer": "^7.0.8",
"immutability-helper": "^3.1.1",
"lodash": "^4.17.20",
"moment": "^2.27.0",
"pdfkit": "^0.11.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dnd": "^11.1.3",
"react-dnd-html5-backend": "^11.1.3",
"react-dom": "^16.13.1",
"react-helmet": "^6.1.0",
"react-obfuscate": "^3.6.8",
"react-pdf": "^4.2.0",
"react-redux": "^7.2.1",
"react-resizable": "^1.10.1",
"react-router-dom": "^5.2.0",
"react-select": "^3.1.0",
"react-signature-canvas": "^1.0.3",
"react-svgmt": "^1.1.11",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"signature_pad": "^3.0.0-beta.3",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"yup": "^0.29.3",
"zxcvbn": "^4.4.2"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"devDependencies": {
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"babel-eslint": "^10.1.0",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^5.3.0",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^7.7.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"git-precommit-checks": "^3.0.6",
"husky": "^4.3.0",
"mini-css-extract-plugin": "^0.10.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"prettier": "^2.0.5",
"terser-webpack-plugin": "^4.1.0",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.1.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "git-precommit-checks"
}
},
"git-precommit-checks": {
"display": {
"notifications": true,
"offendingContent": true,
"rulesSummary": true,
"shortStats": true,
"verbose": true
}
},
"description": "![Splash banner](https://user-images.githubusercontent.com/46543327/91600157-530df080-e91c-11ea-85d2-0b7e10247dfb.png)",
"bugs": {
"url": "https://github.com/philgresh/signdocs/issues"
},
"homepage": "https://github.com/philgresh/signdocs#readme",
"version": "1.0.0",
"main": "webpack.config.js",
"directories": {
"lib": "lib",
"test": "test"
},
"keywords": [],
"author": "",
"license": "ISC"
}