aboutsummaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorJames Barnett <noreply@jamesbarnett.xyz>2022-01-02 18:23:36 +0000
committerJames Barnett <noreply@jamesbarnett.xyz>2022-01-02 18:23:36 +0000
commite075667cd2dc878dd9dceb07c85719f6712bcda1 (patch)
tree414e76418d92a39c59b1f5faf08289c0a729ddb4 /package.json
parent7ad1b7efabea1349107669a432e6c88305f8d825 (diff)
downloadjs-raytracer-e075667cd2dc878dd9dceb07c85719f6712bcda1.tar.xz
js-raytracer-e075667cd2dc878dd9dceb07c85719f6712bcda1.zip
Implement multi-threaded rendering
Diffstat (limited to 'package.json')
-rw-r--r--package.json11
1 files changed, 10 insertions, 1 deletions
diff --git a/package.json b/package.json
index 79d7826..ec6a6f0 100644
--- a/package.json
+++ b/package.json
@@ -6,7 +6,8 @@
"lint": "gts lint",
"fix": "gts fix",
"buildDev": "webpack --mode development",
- "build": "webpack --mode production"
+ "build": "webpack --mode production",
+ "serve": "webpack serve --mode development"
},
"author": "James Barnett",
"license": "GPL-3.0",
@@ -17,6 +18,14 @@
"ts-loader": "9.2.6",
"webpack": "5.65.0",
"webpack-cli": "4.9.1",
+ "webpack-dev-server": "4.7.2",
"copy-webpack-plugin": "10.2.0"
+ },
+ "dependencies": {
+ "class-transformer": "0.5.1",
+ "reflect-metadata": "0.1.13"
+ },
+ "engines": {
+ "node": ">=10.0.0"
}
}