-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 905 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
35
36
37
{
"name": "local-library",
"version": "1.0.0",
"description": "Small library app for practice with basic OOP Javascript features.",
"main": "library.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx webpack",
"cBuild": "npx webpack --watch"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"singleQuote": true
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"css-loader": "^7.1.1",
"drop-down-init": "^1.0.3",
"file-loader": "^6.2.0",
"style-loader": "^4.0.0"
},
"devDependencies": {
"@eslint/js": "^9.2.0",
"eslint": "^9.2.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.1.0",
"html-loader": "^5.0.0",
"html-webpack-plugin": "^5.6.0",
"prettier": "^3.2.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
}
}