-
Notifications
You must be signed in to change notification settings - Fork 192
/
Copy pathpackage.json
34 lines (34 loc) · 990 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
32
33
34
{
"name": "node_compression-app",
"version": "1.0.0",
"description": "Node.js compression app",
"main": "src/index.js",
"scripts": {
"init": "mate-scripts init",
"start": "node src/index.js",
"lint": "npm run format && mate-scripts lint",
"format": "prettier --ignore-path .prettierignore --write './src/**/*.{js,ts}'",
"test:only": "mate-scripts test",
"update": "mate-scripts update",
"postinstall": "npm run update",
"test": "npm run lint && npm run test:only"
},
"author": "Mate academy",
"license": "GPL-3.0",
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@mate-academy/eslint-config": "latest",
"@mate-academy/scripts": "^1.8.6",
"axios": "^1.7.2",
"eslint": "^8.57.0",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-node": "^11.1.0",
"form-data": "^4.0.0",
"formidable": "^3.5.1",
"jest": "^29.7.0",
"prettier": "^3.3.2"
},
"mateAcademy": {
"projectType": "javascript"
}
}