-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.23 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
38
39
40
41
{
"name": "bawo",
"version": "1.0.0",
"main": "index.js",
"author": "Fumba Chibaka, Panji Msowoya",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.19.0",
"@babel/preset-env": "^7.19.4",
"@babel/register": "^7.18.9",
"babel-loader": "^8.2.5",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.25.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.2.1",
"fs": "^0.0.1-security",
"html-webpack-plugin": "^5.5.0",
"prettier": "^2.8.0",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.0"
},
"browserslist": "defaults",
"scripts": {
"start": "webpack-dev-server --mode=development --config webpack.config.js",
"dev": "webpack-dev-server --mode=development --config webpack.config.js --open",
"build": "webpack --mode=production --config webpack.config.js",
"lint": "eslint .",
"lint:fix": "eslint --fix",
"format": "prettier --write './**/*.{js,css,md,json}'"
},
"dependencies": {
"core-js": "^3.25.3",
"css-loader": "^6.7.1",
"melonjs": "^14.1.0",
"style-loader": "^3.3.1"
}
}