-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·51 lines (51 loc) · 1.62 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
49
50
51
{
"name": "rasterization",
"version": "0.2.0",
"description": "rasterization of images using javascript",
"main": "index.js",
"scripts": {
"dev": "./node_modules/.bin/webpack-dev-server --progress --colors --content-base dist/",
"clean": "rm -rf dist",
"build": "npm run clean && ./node_modules/.bin/webpack --progress --colors",
"test": "./node_modules/.bin/eslint ./src --color",
"webpack": "./node_modules/.bin/webpack --progress --colors"
},
"repository": {
"type": "git",
"url": "https://github.com/pjkarlik/Rasterization.git"
},
"author": "pjkarlik@gmail.com",
"devDependencies": {
"babel-core": "~6.26.3",
"babel-eslint": "^10.0.1",
"babel-loader": "~7.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "~1.7.0",
"babel-preset-stage-0": "^6.24.1",
"clean-webpack-plugin": "~1.0.1",
"console-polyfill": "^0.3.0",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "~0.28.7",
"dat.gui": "^0.7.3",
"ejs": "^2.6.1",
"eslint": "^4.19.1",
"eslint-import-resolver-webpack": "^0.10.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-dependencies": "^2.4.0",
"eslint-plugin-import": "^2.12.0",
"file-loader": "~3.0.1",
"html-loader": "~0.5.4",
"html-webpack-plugin": "^3.2.0",
"image-webpack-loader": "^4.6.0",
"imports-loader": "^0.8.0",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"mini-css-extract-plugin": "^0.5.0",
"style-loader": "~0.23.1",
"webpack": "^4.10.2",
"webpack-cli": "^3.0.1",
"webpack-dev-server": "^3.1.14",
"webpack-md5-hash": "0.0.6"
}
}