-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.13 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
{
"name": "timbre-space-js",
"version": "1.0.0",
"description": "",
"main": "public/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"tsc-watch": "tsc -w",
"wp-watch": "webpack --config webpack.config.js --watch",
"wp-serve": "webpack serve",
"dev": "concurrently --kill-others \"npm run tsc-watch\" \"npm run wp-watch\" \"npm run wp-serve\"",
"build": "webpack --config webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/carlmoore256/TimbreSpaceJS.git"
},
"author": "Carl Moore",
"license": "ISC",
"bugs": {
"url": "https://github.com/carlmoore256/TimbreSpaceJS/issues"
},
"homepage": "https://github.com/carlmoore256/TimbreSpaceJS#readme",
"dependencies": {
"@types/dat.gui": "^0.7.7",
"@types/three": "^0.146.0",
"concurrently": "^7.6.0",
"copy-webpack-plugin": "^11.0.0",
"dat.gui": "^0.7.9",
"html-webpack-plugin": "^5.5.0",
"meyda": "^5.5.1",
"three": "^0.147.0",
"tsc-watch": "^5.0.3"
},
"devDependencies": {
"webpack-cli": "^5.0.0",
"webpack-dev-server": "^4.11.1"
}
}