forked from triestpa/Atlas-Of-Thrones
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 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
{
"name": "atlas-of-thrones",
"version": "0.8.0",
"description": "Game of Thrones interactive map, powered by Leaflet, PostGIS, and Redis.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"serve": "webpack --watch & http-server ./public",
"dev": "NODE_ENV=local npm start & npm run serve",
"build": "NODE_ENV=production webpack",
"deploy-frontend": "npm run build && bash deploy.sh"
},
"author": {
"name": "Patrick Triest",
"email": "patrick.triest@gmail.com",
"url": "https://blog.patricktriest.com"
},
"repository": {
"type": "git",
"url": "https://github.com/triestpa/Atlas-Of-Thrones.git"
},
"license": {
"type": "Creative Commons Attribution-Non-Commercial-ShareAlike 3.0",
"url": "https://www.creativecommons.org/licenses/by-nc-sa/3.0/"
},
"engines": {
"node": ">=7.6.0"
},
"dependencies": {
"axios": "0.16.2",
"dotenv": "4.0.0",
"file-loader": "^2.0.0",
"fuse.js": "3.0.5",
"ioredis": "3.1.4",
"joi": "10.6.0",
"kcors": "2.2.1",
"koa": "^2.7.0",
"koa-joi-validate": "0.5.1",
"koa-router": "7.2.1",
"leaflet": "^1.3.4",
"pg": "7.2.0",
"winston": "2.3.1"
},
"devDependencies": {
"babel-loader": "7.1.2",
"babili-webpack-plugin": "0.1.2",
"css-loader": "0.28.5",
"eslint": "4.5.0",
"eslint-config-standard": "10.2.1",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "5.1.1",
"eslint-plugin-promise": "3.5.0",
"eslint-plugin-standard": "3.0.1",
"html-loader": "0.5.1",
"http-server": "^0.11.1",
"node-sass": "^4.11.0",
"sass-loader": "6.0.6",
"style-loader": "0.18.2",
"url-loader": "^1.1.2",
"webpack": "3.5.5"
}
}