-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 866 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 866 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
27
28
29
30
31
{
"name": "heatmap",
"version": "1.0.0",
"description": "A heat map made possible with WebGL",
"main": "dist/main.min.js",
"scripts": {
"ci": "pnpm i && pnpm run build:prod",
"start": "pnpm i && pnpm run build:dev && pnpm run serve",
"build:prod": "webpack --config webpack.config.js --mode production",
"build:dev": "webpack --config webpack.config.js --mode development",
"serve": "http-server"
},
"keywords": [],
"author": "",
"license": "",
"dependencies": {
"lil-gui": "^0.19.2",
"stats.js": "^0.17.0"
},
"devDependencies": {
"@types/node": "^20.12.12",
"@types/stats.js": "^0.17.3",
"copy-webpack-plugin": "^12.0.2",
"http-server": "^14.1.1",
"ts-loader": "^9.5.1",
"ts-shader-loader": "^2.0.2",
"typescript": "^5.4.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
}
}