forked from districtr/districtr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 3.08 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
{
"name": "districtr",
"version": "0.0.1",
"description": "A tool for drawing districting plans",
"scripts": {
"test": "node validate.js && karma start --coverage",
"build": "npm run build:aliases && npm run build:lambda && npm run build:app",
"build:aliases": "cp html/edit.html html/COI.html && cp html/edit.html html/plan.html && cp html/event.html html/tag.html && cp html/event.html html/group.html",
"build:app": "gulp build",
"build:lambda": "netlify-lambda build src/lambda",
"develop": "gulp develop",
"lint": "eslint src",
"start": "run-p start:**",
"start:app": "gulp develop",
"start:lambda": "netlify-lambda serve src/lambda",
"test:watch": "karma start --auto-watch=true --single-run=false",
"test-ci": "node validate.js && karma start --single-run --browsers Firefox",
"validate": "node validate.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/districtr/districtr.git"
},
"keywords": [
"gis",
"voting-rights",
"redistricting"
],
"author": "Metric Geometry and Gerrymandering Group",
"license": "MIT",
"bugs": {
"url": "https://github.com/districtr/districtr/issues"
},
"homepage": "https://github.com/districtr/districtr#readme",
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@babel/register": "^7.14.5",
"@open-wc/karma-esm": "^2.16.18",
"@open-wc/testing": "^2.5.33",
"@open-wc/testing-karma": "^4.0.9",
"@open-wc/testing-karma-bs": "^1.3.94",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^12.0.0",
"@rollup/plugin-node-resolve": "^11.0.0",
"babel-polyfill": "^6.26.0",
"browser-sync": "^2.26.14",
"chai": "^4.3.4",
"dotenv": "^8.6.0",
"es5-ext": "^0.10.53",
"eslint": "^6.4.0",
"esm": "^3.2.25",
"gulp": "^4.0.2",
"gulp-dart-sass": "^0.9.1",
"karma-firefox-launcher": "^1.2.0",
"mocha": "^6.2.0",
"mocha-junit-reporter": "^1.23.1",
"mongodb-client-encryption": "^2.9.0",
"mongoose": "^5.13.7",
"node-fetch": "^2.6.1",
"npm-run-all": "^4.1.5",
"rollup": "^2.52.2",
"rollup-plugin-terser": "^6.1.0",
"sass": "^1.35.1",
"sinon": "^7.5.0",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/runtime": "^7.14.6",
"@rollup/plugin-json": "^4.1.0",
"bad-words": "^3.0.4",
"caniuse-lite": "^1.0.30001239",
"chance": "^1.1.7",
"d3-geo": "^2.0.2",
"d3-scale-chromatic": "^1.5.0",
"d3-selection": "^1.4.2",
"d3-transition": "^1.2.0",
"encoding": "^0.1.13",
"geo-albers-usa-territories": "0.0.2",
"hotkeys-js": "^3.8.7",
"lit-html": "^1.4.1",
"mapbox-gl": "^2.3.1",
"netlify-lambda": "^1.6.3",
"ua-parser-js": "^1.0.1"
}
}