-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.64 KB
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
{
"name": "ld38",
"version": "0.0.1",
"description": "Ludum Dare Jam 38 game",
"homepage": "https://gregfagan.com/technoglyph",
"bugs": {
"url": "https://github.com/gregfagan/technoglyph/issues"
},
"license": "ISC",
"contributors": [
{
"name": "Greg Fagan"
},
{
"name": "Kyle Fagan"
}
],
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/gregfagan/technoglyph.git"
},
"scripts": {
"start": "webpack-dev-server",
"build": "cross-env-shell NODE_ENV=production webpack -p",
"publish": "node publish.js",
"dev": "cross-env-shell TARGET=node webpack -w",
"lint": "eslint src"
},
"dependencies": {
"d3-ease": "^1.0.3",
"howler": "^2.0.3",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-three-renderer": "^3.1.0",
"three": "^0.85.0",
"webfontloader": "^1.6.27"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.4.0",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.24.1",
"babel-watch": "^2.0.6",
"cross-env": "^5.2.0",
"eslint": "^3.17.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"file-loader": "^0.11.1",
"handlebars": "^4.0.6",
"handlebars-loader": "^1.5.0",
"html-webpack-plugin": "^2.28.0",
"inquirer": "^3.0.6",
"nodemon": "^1.11.0",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.2"
}
}