-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.5 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
{
"name": "lasgun",
"version": "0.1.0",
"description": "A ray tracer in the browser",
"main": "index.js",
"scripts": {
"build": "NODE_OPTIONS=--openssl-legacy-provider webpack --config webpack.config.js",
"deploy": "NODE_OPTIONS=--openssl-legacy-provider NODE_ENV=production webpack --config webpack.config.js && sleep 1 && netlify deploy",
"deploy:prod": "NODE_OPTIONS=--openssl-legacy-provider NODE_ENV=production webpack --config webpack.config.js && sleep 1 && netlify deploy --prod",
"start": "NODE_OPTIONS=--openssl-legacy-provider webpack-dev-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nfrasser/lasgun-js.git"
},
"keywords": [
"webassembly",
"wasm",
"rust",
"webpack"
],
"author": "Nick Frasser <[email protected]>",
"license": "(MIT OR Apache-2.0)",
"dependencies": {
"@wasm-tool/wasm-pack-plugin": "^1.7.0",
"codemirror": "^5.58.2",
"copy-webpack-plugin": "^5.0.3",
"css-loader": "^5.2.7",
"esprima": "^4.0.1",
"fibers": "^5.0.3",
"html-webpack-plugin": "^4.5.2",
"mini-css-extract-plugin": "^1.6.2",
"node-sass": "^8.0.0",
"sass": "^1.29.0",
"sass-loader": "^10.4.1",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^4.2.3",
"ts-loader": "^8.0.0",
"typescript": "^5.2.2",
"webpack": "^4.42.0",
"webpack-cli": "^4.10.0"
},
"devDependencies": {
"@types/codemirror": "^5.60.10",
"netlify-cli": "^16.2.0",
"webpack-dev-server": "^4.15.1"
}
}