-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 913 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 913 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "javascript-learning-project",
"version": "1.0.0",
"description": "[](https://www.javascript.com/) [](https://www.ecma-international.org/) [](https://stackoverflow.com/questions/tagged/javascript)",
"main": "index.js",
"scripts": {
"prettier": "npx prettier --write .",
"lint:check": "eslint . --max-warnings=0",
"lint:fix": "eslint . --fix"
},
"author": "Adam Cegielka",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.12.0",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.1",
"globals": "^15.10.0",
"prettier": "3.3.3"
}
}