-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.14 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
{
"private": true,
"name": "mandelbrot",
"version": "1.0.0",
"description": "Web app for rendering fractals with use of recurrent expressions",
"homepage": "https://hub.mos.ru/fominmv2498/mandelbrot",
"author": "Maksim Victorovich Fomin",
"license": "SEE LICENSE IN LICENSE.md",
"repository": {
"type": "git",
"url": "[email protected]:fominmv2498/mandelbrot.git"
},
"scripts": {
"start": "webpack serve --open",
"build": "webpack --env production",
"build:dev": "webpack",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@types/node": "^20.8.3",
"@types/webpack": "^5.28.3",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"html-webpack-plugin": "^5.5.3",
"mini-css-extract-plugin": "^2.7.6",
"terser-webpack-plugin": "^5.3.9",
"ts-loader": "^9.5.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"fullscreen-polyfill": "^1.0.4"
}
}