This repository has been archived by the owner on Jan 24, 2025. It is now read-only.
forked from muziejus/torn-apart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.78 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "torn-apart",
"sideEffects": false,
"version": "0.0.1",
"private": true,
"scripts": {
"prebuild": "rimraf dist",
"build": "npm-run-all --parallel build:*",
"build:main": "babel -q --copy-files --out-dir dist --ignore *.test.js --plugins syntax-dynamic-import src",
"build:umd": "webpack -p",
"lint": "eslint src",
"prenews": "npm run build:main",
"news": "node dist/news",
"validate": "npm-run-all --parallel lint build",
"watch": "webpack --watch",
"prewcs": "npm run build:main",
"wcs": "node dist/wcs"
},
"dependencies": {
"@turf/boolean-point-in-polygon": "^6.0.1",
"@turf/helpers": "^6.1.4",
"@turf/meta": "^6.0.2",
"@turf/rhumb-destination": "^6.0.3",
"csv": "^3.1.0",
"csv-parse": "^2.5.0",
"d3": "^5.5.0",
"d3-cloud": "^1.2.5",
"d3-simple-slider": "^0.2.1",
"d3-svg-legend": "^2.25.6",
"d3-tip": "^0.9.1",
"eslint-config-prettier": "^3.0.1",
"jquery": "^3.3.1",
"leaflet": "^1.3.1",
"markdown-it": "^8.4.1",
"markdown-it-footnote": "^3.0.1",
"newsapi": "^2.2.2",
"prettier": "^1.14.2",
"showdown": "^1.8.6",
"showdown-footnotes": "^2.1.2",
"simple-statistics": "^6.1.0",
"slugify": "^1.3.0",
"underscore.string": "^3.3.4",
"venn.js": "^0.2.20"
},
"description": "Please see [our site](http://xpmethod.plaintext.in/torn-apart/) for a thorough discussion of what our project and its goals are. This README is here more just to satisfy people curious as to how this was all technically done.",
"directories": {
"doc": "docs"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-loader": "^7.1.5",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"clean-webpack-plugin": "^0.1.19",
"compression-webpack-plugin": "^1.1.11",
"csv-loader": "^3.0.2",
"eslint": "^5.1.0",
"eslint-config-kentcdodds": "^14.0.0",
"eslint-plugin-prettier": "^2.6.2",
"exports-loader": "^0.7.0",
"ghooks": "^2.0.4",
"lodash": "^4.17.10",
"npm-run-all": "^4.1.3",
"papaparse": "^4.5.0",
"rimraf": "^2.6.2",
"webpack": "^4.15.1",
"webpack-cli": "^3.0.8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xpmethod/torn-apart.git"
},
"keywords": [
"immigration",
"immigration-visualizer",
"digital-humanities",
"mapping"
],
"author": "Moacir P. de Sá Pereira",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/xpmethod/torn-apart/issues"
},
"homepage": "https://github.com/xpmethod/torn-apart#readme",
"babel": {
"presets": [
"env"
]
},
"config": {
"ghooks": {
"pre-commit": "npm run lint"
}
}
}