-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 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
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "jpg-to-ascii",
"private": true,
"version": "1.1.0",
"description": "JPG to ASCII converter",
"main": "./public/js/app.js",
"scripts": {
"start": "node ./src/server.js",
"dev": "concurrently -n webpack,node -c green,blue \"webpack --watch\" \" nodemon ./src/server.js\"",
"build": "webpack"
},
"keywords": [
"image",
"ascii",
"art",
"converter",
"heroku"
],
"engines": {
"node": ">=10"
},
"author": "Volodymyr Zakhovaiko",
"license": "ISC",
"dependencies": {
"express": "4.18.2",
"jpeg-js": "0.4.4",
"multer": "1.4.4"
},
"devDependencies": {
"@babel/core": "^7.22.20",
"@babel/eslint-parser": "^7.22.15",
"@babel/preset-env": "7.10.4",
"babel-loader": "8.1.0",
"concurrently": "^8.2.1",
"css-loader": "5.2.7",
"eslint": "^8.40.0",
"eslint-config-alloy": "^5.1.2",
"eslint-plugin-prettier": "5.0.0",
"mini-css-extract-plugin": "1.6.2",
"nodemon": "3.0.1",
"prettier": "3.0.3",
"sass": "1.67.0",
"sass-loader": "10.4.1",
"uglifyjs-webpack-plugin": "2.2.0",
"webpack": "4.47.0",
"webpack-cli": "4.10.0"
}
}