-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1013 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
{
"name": "template-repo-v2",
"version": "1.0.0",
"description": "template repo for starting new assignments for the Odin Project",
"main": "index.js",
"scripts": {
"build": "webpack",
"dev": "webpack serve",
"deploy": "git subtree push --prefix dist origin gh-pages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/niccostantini/template-repo-v2.git"
},
"author": "Niccolò Costantini",
"license": "MIT",
"bugs": {
"url": "https://github.com/niccostantini/template-repo-v2/issues"
},
"homepage": "https://github.com/niccostantini/template-repo-v2#readme",
"devDependencies": {
"@eslint/js": "^9.12.0",
"css-loader": "^7.1.2",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.11.0",
"html-loader": "^5.1.0",
"html-webpack-plugin": "^5.6.0",
"prettier": "3.3.3",
"style-loader": "^4.0.0",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
}
}