-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 758 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 758 Bytes
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
{
"name": "worker-ray-tracer",
"version": "1.0.0",
"description": "Canvas RT proto.",
"main": "index.js",
"private": true,
"scripts": {
"serve": "webpack serve --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"build:dev": "webpack --config webpack.dev.js",
"lint": "tslint --project tsconfig.json --config tslint.json --format stylish --force",
"lint:fix": "npm run lint -- --fix"
},
"author": "Dmytro Ilnicki",
"license": "MIT",
"devDependencies": {
"html-webpack-plugin": "^5.5.0",
"ts-loader": "^9.2.6",
"tslint": "^5.14.0",
"typescript": "^4.5.2",
"webpack": "^5.64.4",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0"
}
}