forked from sidx1024/deck.gl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.83 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 2.83 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
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
98
99
100
101
102
103
104
105
{
"description": "Website for deck.gl",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/uber/deck.gl.git"
},
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --env.local --progress --content-base ./src/static --open",
"build-clean": "rm -rf ./dist && mkdir dist",
"build-static": "cp -r ./src/static/* dist && babel ./src/static/workers --out-dir dist/workers && cd `git rev-parse --show-toplevel` && git checkout origin/blog -- blog && mv blog website/dist/ && cd -",
"build-script": "webpack -p --env.prod",
"build": "npm run build-clean && npm run build-static && npm run build-script",
"lint": "eslint src --ignore-pattern workers"
},
"dependencies": {
"@tweenjs/tween.js": "^16.7.0",
"autobind-decorator": "^1.3.3",
"babel-polyfill": "^6.1.19",
"babel-register": "^6.22.0",
"d3-color": "^1.0.1",
"d3-request": "^1.0.2",
"d3-scale": "^1.0.6",
"expr-eval": "^1.0.0",
"highlight.js": "^9.7.0",
"immutable": "^3.7.5",
"luma.gl": "^5.0.0",
"marked": "^0.3.6",
"prop-types": "^15.5.8",
"rbush": "^2.0.1",
"react": "^15.4.0",
"react-dom": "^15.4.0",
"react-map-gl": "^3.2.0",
"react-redux": "^4.4.5",
"react-router": "^2.8.1",
"redux": "^3.6.0",
"redux-actions": "^1.2.0",
"redux-thunk": "^2.1.0",
"stats.js": "^0.17.0"
},
"devDependencies": {
"autoprefixer-loader": "^3.2.0",
"babel-cli": "^6.24.0",
"babel-core": "^6.25.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^7.0.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-2": "^6.22.0",
"brfs-babel": "^1.0.0",
"css-loader": "^0.26.1",
"eslint": "^3.0.0",
"eslint-config-uber-es2015": "^3.0.0",
"eslint-config-uber-jsx": "^3.0.0",
"eslint-plugin-react": "^6.0.0",
"file-loader": "^0.9.0",
"node-sass": "^4.3.0",
"raw-loader": "^0.5.1",
"react-hot-loader": "next",
"sass-loader": "^4.1.1",
"source-map-loader": "^0.2.1",
"style-loader": "^0.13.1",
"transform-loader": "^0.2.3",
"url-loader": "^0.5.7",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5",
"webworkify-webpack-dropin": "^1.1.9"
},
"babel": {
"presets": [
"react",
"es2015",
"stage-2"
],
"plugins": [
"transform-decorators-legacy"
],
"env": {
"test": {
"plugins": [
"react-hot-loader/babel"
]
}
}
},
"eslintConfig": {
"parser": "babel-eslint",
"plugins": [
"react"
],
"extends": [
"eslint-config-uber-jsx",
"eslint-config-uber-es2015"
],
"rules": {
"guard-for-in": 0,
"camelcase": 0
},
"globals": {
"MapboxAccessToken": false
}
}
}