-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·31 lines (31 loc) · 1000 Bytes
/
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
{
"name": "fractaloscope",
"version": "1.0.0",
"description": "Julia fractal viewer",
"main": "src/index.ts",
"scripts": {
"start": "webpack-dev-server",
"build": "npm run clean && webpack --env.production && npm run minify",
"lint": "tslint -p tsconfig.json 'src/**/*.ts'",
"clean": "rm -rf dist",
"minify": "npm run minify:html && npm run minify:css",
"minify:html": "html-minifier -c html-minifier.json -o dist/index.html dist/index.html",
"minify:css": "csso dist/style.css --output dist/style.css"
},
"author": "Alex Fedosov",
"license": "MIT",
"devDependencies": {
"@types/webaudioapi": "0.0.27",
"copy-webpack-plugin": "^4.6.0",
"csso-cli": "^2.0.2",
"html-minifier": "^4.0.0",
"ts-loader": "^5.3.3",
"tslint": "^5.12.1",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.3.3",
"webpack": "^4.29.4",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.14",
"webpack-glsl-loader": "^1.0.1"
}
}