-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.22 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
{
"name": "three-js-webpack-boilerplate",
"repository": {
"type": "git",
"url": "https://github.com/brandflugan/three-js-webpack-boilerplate.git"
},
"version": "1.0.0",
"description": "Webpack 4 Three.js Boilerplate",
"main": "index.js",
"author": "Markus Bjerre",
"license": "MIT",
"scripts": {
"build": "rm -rf dist && webpack --config ./webpack.config.js --mode production",
"build:debug": "rm -rf dist && webpack --config ./webpack.config.js --mode development",
"start": "webpack serve --config ./webpack.config.js --mode development",
"fix-styling": "npx stylelint **/*.scss --fix",
"fix-js": "./node_modules/.bin/eslint src --fix"
},
"babel": {},
"keywords": [
"boilerplate",
"three",
"threejs",
"three.js",
"three boilerplate",
"threejs boilerplate",
"three.js boilerplate",
"webpack",
"webpack 4",
"webpack boilerplate"
],
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/preset-env": "^7.16.11",
"babel-loader": "^8.2.4",
"copy-webpack-plugin": "^10.2.4",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"cssnano": "^5.1.7",
"eslint": "^7.0.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-webpack-plugin": "^2.6.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"node-sass": "^7.0.1",
"postcss-loader": "^6.2.1",
"postcss-preset-env": "^7.4.3",
"prettier": "^2.6.2",
"prettier-eslint": "^13.0.0",
"sass-loader": "^12.6.0",
"style-loader": "^3.3.1",
"stylelint": "^14.6.1",
"stylelint-prettier": "^2.0.0",
"stylelint-webpack-plugin": "^3.2.0",
"url-loader": "^4.1.1",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "4.8.1"
},
"dependencies": {
"@types/dat.gui": "^0.7.7",
"dat.gui": "^0.7.9",
"glslify-loader": "^2.0.0",
"raw-loader": "^4.0.2",
"three": "^0.149.0"
}
}