-
Notifications
You must be signed in to change notification settings - Fork 91
/
package.json
65 lines (65 loc) · 1.7 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
{
"name": "runelite.net",
"version": "0.0.1",
"engines": {
"node": ">=8.12.0",
"npm": ">=6.0.0"
},
"private": true,
"main": "./src/index.js",
"module": "./src.index.js",
"jsnext:main": "./src/index.js",
"dependencies": {
"@fortawesome/fontawesome-free": "5.13.0",
"@gouch/to-title-case": "2.2.1",
"bootstrap": "4.4.1",
"fastestsmallesttextencoderdecoder": "^1.0.22",
"leaflet": "^1.7.1",
"preact": "^10.4.1",
"preact-router": "^3.2.1",
"ramda": "0.27.0",
"react-app-polyfill": "^1.0.6",
"react-intersection-observer": "^9.4.4",
"react-leaflet": "^3.1.0",
"react-redux": "^7.2.0",
"redux": "4.0.5",
"redux-actions": "2.6.5",
"redux-persist": "6.0.0",
"reselect": "4.0.0",
"s-ago": "2.1.0",
"uuid": "8.0.0"
},
"devDependencies": {
"customize-cra": "0.9.1",
"fast-xml-parser": "^3.17.4",
"front-matter": "^4.0.1",
"husky": "4.2.5",
"lato-font": "^3.0.0",
"loader-utils": "^0.2.9",
"markdown-it": "^11.0.0",
"markdown-it-html5-media": "^0.6.0",
"null-loader": "4.0.0",
"prerender-spa-plugin": "3.4.0",
"prettier": "2.0.5",
"pretty-quick": "2.0.1",
"react-app-rewired": "2.1.6",
"react-scripts": "^3.4.3",
"redux-logger": "3.0.6",
"sass": "^1.55.0",
"sitemap-webpack-plugin": "0.7.1"
},
"scripts": {
"fix": "eslint --fix src && prettier --write '{*,public/*,src/**,src/**/*,src/**/**/*}.{js,json,css,scss,md,html}'",
"test": "react-app-rewired test",
"start": "react-app-rewired start",
"build": "react-app-rewired build"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"browserslist": [
"defaults"
]
}