-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 818 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 818 Bytes
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
{
"name": "threejs-introductory-exercise",
"version": "1.0.0",
"main": "src/index.js",
"scripts": {
"start": "webpack-dev-server",
"build": "webpack"
},
"repository": "Level30Wizards/threejs-introductory-exercise",
"author": "Servin Nissen",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.14.1",
"babel-loader": "^8.2.0",
"copy-webpack-plugin": "^6.1.1",
"css-loader": "^6.5.1",
"glslify-loader": "^2.0.0",
"html-webpack-plugin": "^4.5.0",
"raw-loader": "^4.0.1",
"style-loader": "^3.3.1",
"webpack": "^5.64.1",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.5.0"
},
"dependencies": {
"stats.js": "^0.17.0",
"three": "^0.128.0"
}
}