-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.3 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
{
"name": "slideshow-map",
"version": "1.0.0",
"description": "slideshow map for fr",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --open",
"dev": "webpack-dev-server",
"build": "npm run build:default && npm run build:min",
"build:default": "webpack --config webpack.build.config.js",
"build:min": "webpack --config webpack.build.min.config.js",
"build:dev": "webpack --config webpack.build.dev.config.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/yuqianma/slideshow-map.git"
},
"keywords": [
"map",
"3d"
],
"author": "Yuqian Ma",
"license": "MIT",
"bugs": {
"url": "https://github.com/yuqianma/slideshow-map/issues"
},
"homepage": "https://github.com/yuqianma/slideshow-map#readme",
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"babel-loader": "^8.0.5",
"chai": "^4.1.2",
"git-rev-sync": "^1.12.0",
"mocha": "^5.1.1",
"mocha-loader": "^1.1.3",
"terser-webpack-plugin": "^1.1.0",
"webpack": "^4.8.3",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.10"
},
"dependencies": {
"mapbox-gl": "^1.12.0",
"popmotion": "^8.5.3",
"postprocessing": "^4.4.2",
"three": "^0.92.0",
"three-orbitcontrols": "^2.0.0"
}
}