-
Notifications
You must be signed in to change notification settings - Fork 286
/
package.json
executable file
·72 lines (72 loc) · 1.98 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
{
"name": "webglobe",
"version": "0.6.3",
"description": "A WebGL virtual globe and map engine.",
"main": "require.js",
"scripts": {
"clean": "rimraf buildOutput && rimraf index.html",
"prebuild:dev": "npm run clean",
"build:dev": "cross-env NODE_ENV=development webpack --progress --colors",
"prebuild:prod": "npm run clean",
"build:prod": "cross-env NODE_ENV=production webpack --progress --colors",
"start": "npm run build:dev",
"test": "cross-env NODE_ENV=development webpack --progress --colors"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iSpring/WebGlobe.git"
},
"keywords": [
"WebGL",
"Map",
"Globe",
"Earth",
"3D",
"HTML5"
],
"author": "iSpring",
"engines": {
"node": ">=6.0.0"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/iSpring/WebGlobe/issues"
},
"homepage": "https://github.com/iSpring/WebGlobe#readme",
"devDependencies": {
"@types/es6-promise": "0.0.32",
"@types/react": "^15.6.18",
"@types/react-dom": "^0.14.23",
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"chalk": "^1.1.3",
"classnames": "^2.2.5",
"cross-env": "^3.1.3",
"css-loader": "^0.26.1",
"ejs-loader": "^0.3.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^0.10.1",
"html-loader": "^0.4.5",
"html-webpack-plugin": "^2.26.0",
"node-sass": "^4.5.0",
"rimraf": "^2.5.4",
"sass-loader": "^4.1.1",
"style-loader": "^0.13.1",
"ts-loader": "^3.5.0",
"typescript": "^2.9.2",
"webpack": "3.10.0",
"webpack-md5-hash": "^0.0.6"
},
"dependencies": {
"babel-polyfill": "^6.23.0",
"es6-promise": "^4.0.5",
"prop-types": "^15.5.8",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-router": "^3.0.3"
}
}