-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
42 lines (42 loc) · 1.07 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-starter",
"version": "1.0.0",
"description": "three.js + typescript",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack serve --open",
"build": "webpack build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/phodal/codexity.git"
},
"keywords": [],
"author": "Phodal HUANG",
"license": "MIT",
"bugs": {
"url": "https://github.com/phodal/codexity/issues"
},
"homepage": "https://github.com/phodal/codexity#readme",
"devDependencies": {
"@types/three": "^0.134.0",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "latest",
"html-webpack-plugin": "latest",
"progress-bar-webpack-plugin": "latest",
"style-loader": "latest",
"ts-loader": "latest",
"typescript": "latest",
"webpack": "latest",
"webpack-cli": "latest",
"webpack-dev-server": "latest"
},
"dependencies": {
"@types/d3": "^7.1.0",
"cannon": "^0.6.2",
"d3": "^7.1.1",
"stats.js": "^0.17.0",
"three": "latest"
}
}