forked from EarthlingInteractive/election-vr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.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/sbrudz/election-vr"
},
"homepage": "https://sbrudz.github.io/election-vr/",
"bugs": {
"url": "https://github.com/sbrudz/election-vr/issues"
},
"scripts": {
"start": "webpack-dev-server --port 3000 --open",
"build": "NODE_ENV=production webpack",
"preprod": "npm run build",
"prod": "http-server ./dist -p 4000 -o",
"lint": "eslint src/**/*.js",
"lint:fix": "eslint --fix src/**/*.js"
},
"dependencies": {
"aframe": "^1.3.0",
"aframe-geo-projection-component": "^2.0.0",
"aframe-haptics-component": "^1.6.3",
"aframe-look-at-component": "^1.0.0",
"d3-format": "^1.2.2",
"d3-scale": "^2.0.0",
"super-hands": "^3.0.3"
},
"devDependencies": {
"@babel/core": "^7.18.5",
"@babel/eslint-parser": "^7.18.2",
"@babel/plugin-proposal-object-rest-spread": "^7.18.0",
"@babel/preset-env": "^7.18.2",
"babel-loader": "^8.2.5",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.18.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"html-webpack-plugin": "^5.5.0",
"http-server": "^14.1.1",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.2"
}
}