-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
98 lines (98 loc) · 2.87 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
{
"name": "neural-notes",
"version": "1.0.0",
"description": "Notes app",
"main": "server.js",
"scripts": {
"start": "webpack-dev-server --port 3000",
"test": "jest",
"lint": "eslint src",
"build": "webpack --mode=production",
"pre-commit": "lint-staged",
"pretty": "prettier --write \"src/**/*.{js,css,html}\""
},
"author": "DarthVanger",
"license": "MIT",
"dependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/node": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/preset-react": "^7.7.4",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/styles": "^4.11.3",
"abortcontroller-polyfill": "^1.4.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-module-resolver": "^3.2.0",
"connected-react-router": "^6.8.0",
"dot-prop-immutable": "^2.0.0",
"express": "^4.13.4",
"history": "^4.0.0",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^7.0.3",
"react-router-dom": "^5.2.0",
"react-toastify": "^5.3.1",
"react-transition-group": "^4.3.0",
"redux": "^4.0.1",
"redux-actions": "^2.6.5",
"redux-catch": "^1.3.1",
"redux-saga": "^1.0.2",
"styled-components": "^4.4.1",
"use-debounce": "^5.2.1"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-optional-chaining": "^7.13.12",
"babel-jest": "^26.6.3",
"compression-webpack-plugin": "^3.0.1",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^2.1.0",
"dotenv-webpack": "^7.1.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^6.9.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-class-property": "^1.1.0",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-standard": "^4.0.0",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^4.0.10",
"image-webpack-loader": "^4.6.0",
"jest": "^26.6.3",
"lint-staged": "^10.0.0",
"prettier": "^1.19.1",
"react-hot-loader": "^4.8.3",
"redux-devtools-extension": "^2.13.8",
"scriptjs": "^2.5.9",
"style-loader": "^0.23.1",
"text-loader": "^0.0.1",
"uglifyjs-webpack-plugin": "^2.2.0",
"url-loader": "^1.1.2",
"webpack": "^4.29.3",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.2.3",
"webpack-dev-middleware": "^3.5.2",
"webpack-dev-server": "^3.2.1",
"webpack-livereload-plugin": "^2.2.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./src/**/*.{js,html,css}": [
"prettier --write"
]
}
}