forked from swift502/Sketchbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.21 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
{
"name": "sketchbook",
"version": "0.4.0",
"description": "3D playground built on three.js and cannon.js",
"keywords": [
"3d",
"threejs",
"cannonjs",
"game",
"engine",
"typescript",
"sketchbook"
],
"main": "build/sketchbook.min.js",
"types": "build/types/sketchbook.d.ts",
"scripts": {
"dev": "webpack-dev-server --config webpack.dev.js",
"build": "webpack --config webpack.prod.js"
},
"repository": {
"type": "git",
"url": "https://github.com/swift502/Sketchbook.git"
},
"author": "swift502 <[email protected]> (http://jblaha.art/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/swift502/Sketchbook/issues"
},
"homepage": "https://github.com/swift502/Sketchbook",
"devDependencies": {
"@types/jquery": "^3.5.5",
"@types/lodash": "^4.14.168",
"css-loader": "^3.6.0",
"style-loader": "^1.3.0",
"ts-loader": "^6.2.2",
"typescript": "^3.9.9",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"jquery": "^3.6.0",
"lodash": "^4.17.21",
"sweetalert2": "^9.17.2",
"three": "0.113.0",
"three-csm": "1.0.2"
}
}