generated from mizok/three-ts-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.33 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
70
71
72
73
74
75
76
77
78
{
"name": "webpack_playground",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx cross-env TS_NODE_PROJECT=\"tsconfig-for-webpack-config.json\" webpack --config webpack.config.ts --mode production",
"dev": "npx cross-env TS_NODE_PROJECT=\"tsconfig-for-webpack-config.json\" webpack serve --config webpack.config.ts --mode development",
"deploy": "npm run build && npx gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mizok/webpack_playground.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mizok/webpack_playground/issues"
},
"homepage": "https://github.com/mizok/webpack_playground#readme",
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/plugin-syntax-top-level-await": "^7.14.5",
"@types/gsap": "^3.0.0",
"@types/lodash": "^4.14.186",
"@types/three": "^0.144.0",
"@types/webpack-dev-server": "^4.7.2",
"assert": "^2.0.0",
"babel-loader": "^8.2.5",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"copy-webpack-plugin": "^9.0.1",
"cross-env": "^7.0.3",
"css-loader": "^5.2.1",
"css-minimizer-webpack-plugin": "^4.0.0",
"ejs": "^3.1.6",
"gh-pages": "^3.2.3",
"html-loader": "^3.0.1",
"html-webpack-plugin": "^5.3.1",
"https-browserify": "^1.0.0",
"mini-css-extract-plugin": "^1.5.0",
"postcss-loader": "^5.2.0",
"postcss-preset-env": "^6.7.0",
"process": "^0.11.10",
"sass": "^1.33.0",
"sass-loader": "^12.0.0",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"style-loader": "^2.0.0",
"template-ejs-loader": "latest",
"terser-webpack-plugin": "^5.3.1",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.5.5",
"url": "^0.11.0",
"webpack": "^5.31.2",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.2"
},
"dependencies": {
"axios": "^1.1.3",
"es6-promise": "^4.2.8",
"gsap": "^3.11.3",
"is-mobile": "^3.1.1",
"lodash": "^4.17.21",
"socket.io-client": "^4.5.2",
"soundcloud-key-fetch": "^1.0.13",
"soundcloud-widget": "^0.2.1",
"three": "^0.145.0"
},
"browserslist": [
"last 2 version",
"> 1%",
"IE 10"
]
}