-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (32 loc) · 847 Bytes
/
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
{
"name": "webgl3drenderer",
"version": "0.1.0",
"description": "3D Game engine on the web.",
"private": true,
"scripts": {
"dev": "concurrently --kill-others \"webpack watch --dev\" \"tsc --watch\"",
"build": "webpack --config webpack.config.js",
"watchwp": "webpack --watch",
"watchts": "tsc --watch",
"serve": "webpack-dev-server",
"watch": "",
"clean": ""
},
"author": "Abdullah Amr",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@types/gl-matrix": "^2.4.5",
"babel-loader": "^8.1.0",
"file-loader": "^6.1.0",
"raw-loader": "^4.0.1",
"typescript": "^3.6.3",
"webpack": "^5.0.0-rc.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"gl-matrix": "^3.1.0"
}
}