-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.76 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
{
"name": "ElectionVR",
"version": "1.0.0",
"description": "A visualization of the popular vote in recent U.S. Presidential elections using WebVR",
"main": "app/index.js",
"author": "Steve Brudz <[email protected]>",
"license": "MIT",
"keywords": [
"virtual reality",
"aframe",
"election",
"data visualization"
],
"repository": {
"type": "git",
"url": "https://github.com/EarthlingInteractive/election-vr"
},
"homepage": "https://electionvr.earthlinglabs.com/",
"bugs": {
"url": "https://github.com/EarthlingInteractive/election-vr/issues"
},
"scripts": {
"start": "webpack-dev-server --port 3000 --open",
"build": "NODE_ENV=production webpack",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist",
"lint": "eslint src/**/*.js",
"lint:fix": "eslint --fix src/**/*.js"
},
"dependencies": {
"aframe": "^0.9.2",
"aframe-geo-projection-component": "^2.0.0",
"aframe-haptics-component": "^1.5.1",
"aframe-look-at-component": "^0.8.0",
"d3-format": "^1.2.2",
"d3-scale": "^2.0.0",
"super-hands": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/plugin-proposal-object-rest-spread": "^7.5.4",
"@babel/preset-env": "^7.5.4",
"babel-eslint": "^8.2.3",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^4.5.1",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "latest",
"eslint-plugin-import": "^2.11.0",
"gh-pages": "^1.1.0",
"html-webpack-plugin": "^3.0.6",
"webpack": "^4.35.3",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2"
}
}