generated from GrantBartlett/react-typescript-webpack-starter
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
42 lines (42 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
{
"name": "three-typescript-webpack-starter",
"version": "1.0.0",
"description": "A starter project for using Three.js, TypeScript, SCSS and Webpack.",
"main": "index.js",
"scripts": {
"dev": "webpack serve --mode development --progress --hot --config ./webpack.config.development.js",
"build": "webpack --mode production --config ./webpack.config.production.js"
},
"keywords": [
"three.js",
"typescript",
"webpack",
"scss"
],
"author": "Grant Bartlett",
"license": "MIT",
"dependencies": {
"three": "^0.126.1"
},
"devDependencies": {
"@types/three": "^0.126.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^7.0.0",
"css-loader": "^5.2.4",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.5.2",
"mini-css-extract-plugin": "^1.6.0",
"postcss": "^8.2.15",
"postcss-loader": "^5.3.0",
"postcss-preset-env": "^6.7.0",
"sass": "^1.32.13",
"sass-loader": "^11.1.1",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.1.2",
"ts-loader": "^8.2.0",
"typescript": "^4.2.4",
"webpack": "^5.37.0",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2"
}
}