generated from Madu-de/madu-framework
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 1.12 KB
/
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": "madu-framework-template",
"version": "1.0.0",
"description": "This is my own little framework based on webpack including typescript, static components and a compiler which compiles all files into 3",
"scripts": {
"build": "npx webpack --config webpack.prod.js",
"start": "npx webpack --config webpack.dev.js",
"lint": "eslint ./src/scripts",
"lintfix": "eslint --fix ./src/scripts"
},
"keywords": [],
"author": "Madu-de",
"license": "AGPL-3.0 license",
"devDependencies": {
"@types/lodash": "^4.14.202",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"css-loader": "^6.9.0",
"esbuild": "^0.19.11",
"eslint": "^8.56.0",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.7.7",
"sass": "^1.69.7",
"sass-loader": "^13.3.3",
"scss-loader": "^0.0.1",
"style-loader": "^3.3.4",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"js-confetti": "^0.12.0",
"lodash": "^4.17.21"
}
}