-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.81 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.81 KB
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
{
"name": "shinkoku",
"version": "0.0.1",
"description": "Fetch and display your critical items from WaniKani",
"private": true,
"author": {
"name": "Dennis Martinez",
"email": "dennis@dennmart.com"
},
"repository": {
"type": "git",
"url": "https://github.com/dennmart/shinkoku.git"
},
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "^0.7.0",
"pluralize": "^8.0.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"rodal": "^1.6.3",
"underscore.string": "^3.3.4",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-merge": "^4.2.1"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.6",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.13.0",
"husky": "^2.4.0",
"lint-staged": "^8.2.0",
"node-sass": "^4.13.1",
"prettier": "^1.18.2",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"webpack": "^4.35.3",
"webpack-cli": "^3.3.5",
"webpack-dev-server": "^3.7.2"
},
"scripts": {
"dev": "webpack-dev-server --config webpack.dev.js",
"build": "webpack --config webpack.prod.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"linters": {
"*.{js,jsx}": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"ignore": [
"dist/**/*.js"
]
}
}