-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.72 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.72 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
{
"name": "threejs-webpack",
"version": "1.0.0",
"description": "basic app env based on webpack",
"main": "app.js",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --progress --config config/webpack.dev.js",
"build": "webpack --config config/webpack.prod.js",
"serve": "node server.js",
"prestart": "npm run build",
"start": "npm run serve"
},
"repository": {
"type": "git",
"url": "git@github.com:codefine/threejs-webpack.git"
},
"keywords": [
"webpack"
],
"author": "Michael.Lu",
"license": "ISC",
"bugs": {
"url": "https://github.com/codefine/threejs-webpack/issues"
},
"homepage": "https://github.com/codefine/threejs-webpack#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.4",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-loader": "^2.0.0",
"exports-loader": "^0.7.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.8.3",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.3",
"uglifyjs-webpack-plugin": "^1.2.4",
"vconsole": "^3.2.0",
"webpack": "^4.5.0",
"webpack-cli": "^2.0.14",
"webpack-dev-server": "^3.1.3",
"webpack-manifest-plugin": "^2.0.0-rc.2",
"webpack-merge": "^4.1.2"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"cross-env": "^5.1.4",
"koa": "^2.5.0",
"koa-static": "^4.0.2",
"three": "^0.91.0"
}
}