-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.4 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
{
"name": "3D-me",
"author": "Brian Sunter<public@briansunter.com> (https://briansunter.com)",
"version": "0.0.1",
"description": "A 3D scan of my body by pocketme",
"main": "src/index.js",
"scripts": {
"start": "webpack-dev-server --mode development",
"dev": "webpack",
"build": "NODE_ENV=production webpack",
"build:pages": "npm run build; cp -R dist/ docs/",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/briansunter/3D-me.git"
},
"keywords": [
"3d",
"viewer",
"model",
"character",
"props"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/briansunter/3D-me/issues"
},
"homepage": "https://github.com/briansunter/3D-me#readme",
"dependencies": {
"three": "0.94.0",
"three-obj-mtl-loader": "1.0.3",
"three-orbit-controls": "82.1.0"
},
"devDependencies": {
"@babel/core": "7.0.0-beta.54",
"@babel/preset-env": "7.0.0-beta.54",
"babel-loader": "8.0.0-beta.4",
"chai": "4.1.2",
"copy-webpack-plugin": "^5.1.1",
"eslint": "5.2.0",
"eslint-config-standard": "11.0.0",
"eslint-loader": "2.1.0",
"eslint-plugin-import": "2.13.0",
"eslint-plugin-node": "7.0.1",
"eslint-plugin-promise": "3.8.0",
"eslint-plugin-standard": "3.1.0",
"mocha": "5.2.0",
"webpack": "^4.41.5",
"webpack-cli": "3.1.0",
"webpack-dev-server": "^3.10.1"
}
}