-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.91 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
{
"name": "csv-demo-app",
"version": "0.0.1",
"private": true,
"description": "Example code for React CSV Importer widget",
"repository": {
"type": "git",
"url": "https://github.com/beamworks/csv-demo-app"
},
"main": "src/index.ts",
"scripts": {
"lint": "eslint --max-warnings=0 --ext ts --ext tsx src",
"lint-fix": "eslint --max-warnings=0 --ext ts --ext tsx src --fix",
"dist": "webpack --mode production",
"watch": "webpack-dev-server --mode development"
},
"author": "Nick Matantsev <[email protected]>",
"license": "GPL-3.0-only",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{ts,tsx}": "eslint --max-warnings=0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"eslint": "^7.8.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"husky": "^4.3.0",
"lint-staged": "^10.3.0",
"prettier": "^2.1.1",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.5",
"@types/webfontloader": "^1.6.32",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^4.3.0",
"dotenv-webpack": "^2.0.0",
"file-loader": "^6.1.0",
"html-webpack-plugin": "^4.4.1",
"notistack": "^1.0.0",
"react": "^16.13.1",
"react-async-hook": "^3.6.1",
"react-csv-importer": "^0.5.0",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"style-loader": "^1.2.1",
"ts-loader": "^8.0.3",
"typescript": "^4.0.2",
"victory": "^35.0.9",
"webfontloader": "^1.6.28",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
}
}