-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.24 KB
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
{
"name": "example",
"version": "2.2.4",
"author": "felixthecat8a",
"type": "commonjs",
"description": "",
"main": "index.js",
"keywords": [],
"repository": {
"type": "git",
"url": "git+https://github.com/felixthecat8a/example.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/felixthecat8a/example/issues"
},
"homepage": "https://github.com/felixthecat8a/example#readme",
"dependencies": {},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^25.0.3",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.4",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"globals": "^16.5.0",
"html-webpack-plugin": "^5.6.5",
"mini-css-extract-plugin": "^2.9.4",
"prettier": "^3.7.4",
"sass": "^1.97.1",
"sass-loader": "^16.0.6",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.4",
"typescript": "^5.9.3",
"webpack": "^5.104.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
},
"scripts": {
"build": "webpack",
"dev": "webpack serve",
"style": "sass src/scss:dist/css --no-source-map",
"lint": "eslint **/*.js",
"format": "prettier --write src/"
}
}