-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 2 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
{
"name": "guru",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "webpack",
"dev": "webpack-dev-server",
"format": "prettier --write \"./**/*.{js,css,html,json}\""
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-import-resolver-webpack": "^0.11.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-react-hooks": "^1.6.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.0.2",
"lint-staged": "^9.2.1",
"prettier": "^1.18.2",
"redux-logger": "^3.0.6",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2"
},
"dependencies": {
"axios": "^0.21.1",
"classnames": "^2.2.6",
"codemirror": "^5.49.0",
"core-js": "^3.1.4",
"css-loader": "^3.2.0",
"date-fns": "^1.30.1",
"file-loader": "^4.2.0",
"firebase": "^7.2.0",
"markdown-toc": "^1.2.0",
"marked": "^0.7.0",
"prismjs": "^1.17.1",
"react": "^16.8.6",
"react-autosize-textarea": "^7.0.0",
"react-dom": "^16.8.6",
"react-markdown": "^4.2.2",
"react-redux": "^7.1.0",
"react-router-dom": "^5.1.2",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0",
"remove-markdown": "^0.3.0",
"style-loader": "^1.0.0",
"styled-jsx": "^3.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,html,json}": [
"prettier --write",
"git add"
]
}
}