forked from runelite/runelite.net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.73 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
{
"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.7.1",
"@gouch/to-title-case": "2.2.1",
"bootstrap": "4.3.1",
"dayjs": "1.8.5",
"platform": "1.3.5",
"preact": "8.4.2",
"preact-compat": "3.18.4",
"preact-redux": "2.0.3",
"preact-router": "2.6.1",
"ramda": "0.26.1",
"recharts": "1.4.2",
"redux": "4.0.1",
"redux-actions": "2.6.4",
"redux-persist": "5.10.0",
"reselect": "4.0.0",
"s-ago": "2.0.1",
"uuid": "3.3.2"
},
"devDependencies": {
"customize-cra": "0.2.11",
"front-matter": "3.0.1",
"husky": "1.3.1",
"libxmljs": "0.19.5",
"markdown-with-front-matter-loader": "0.1.0",
"node-sass": "4.11.0",
"null-loader": "0.1.1",
"prerender-spa-plugin": "3.4.0",
"prettier": "1.16.4",
"pretty-quick": "1.10.0",
"react-app-rewired": "2.1.0",
"react-scripts": "2.1.3",
"redux-logger": "3.0.6",
"sitemap-webpack-plugin": "0.6.0"
},
"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": {
"development": [
"last 2 chrome versions",
"last 2 firefox versions",
"last 2 edge versions"
],
"production": [
">1%",
"last 4 versions",
"Firefox ESR",
"not ie < 11"
]
}
}