forked from runelite/runelite.net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.1 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
{
"name": "runelite.net",
"version": "0.0.1",
"private": true,
"dependencies": {
"@fortawesome/fontawesome": "^1.1.3",
"@fortawesome/fontawesome-free-brands": "^5.0.6",
"@fortawesome/fontawesome-free-solid": "^5.0.6",
"@fortawesome/react-fontawesome": "0.0.18",
"bootstrap": "^4.0.0-beta",
"chart.js": "^2.7.2",
"github-markdown-css": "^2.9.0",
"history": "^4.7.2",
"js-cookie": "^2.1.4",
"moment": "^2.21.0",
"qs": "^6.5.0",
"ramda": "^0.25.0",
"react": "^16.2.0",
"react-chartjs-2": "^2.7.0",
"react-dom": "^16.2.0",
"react-helmet": "^5.2.0",
"react-redux": "^5.0.6",
"react-redux-loading-bar": "^4.0.3",
"react-timeago": "^4.1.9",
"reactstrap": "^5.0.0-beta",
"redux": "^4.0.0",
"redux-actions": "^2.2.1",
"redux-first-router": "0.0.16-next",
"redux-first-router-link": "^1.4.1",
"redux-routines": "^3.0.0",
"reselect": "^3.0.1"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.40",
"@babel/preset-env": "^7.0.0-beta.40",
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"front-matter": "^2.3.0",
"jstoxml": "^1.2.0",
"markdown-it": "^8.4.1",
"markdown-with-front-matter-loader": "^0.1.0",
"react-scripts": "^2.0.0-next.47d2d941",
"react-snap": "^1.12.0",
"remote-redux-devtools": "^0.5.12",
"standard": "^11.0.1",
"surge": "^0.20.1"
},
"scripts": {
"start": "react-scripts start",
"prebuild": "standard",
"build": "react-scripts build",
"postbuild": "babel-node generate-feed.js --presets es2015 && react-snap",
"eject": "react-scripts eject",
"deploy": "npm run build && surge -p build"
},
"reactSnap": {
"puppeteerArgs": [
"--no-sandbox",
"--disable-setuid-sandbox"
],
"crawl": false,
"include": [
"/",
"/blog",
"/features"
]
},
"browserslist": {
"development": [
"last 2 chrome versions",
"last 2 firefox versions",
"last 2 edge versions"
],
"production": [
">1%",
"last 4 versions",
"Firefox ESR",
"not ie < 11"
]
}
}