mirror of
https://github.com/Aviortheking/MasterMind.git
synced 2025-04-22 02:42:13 +00:00
29 lines
697 B
JSON
29 lines
697 B
JSON
{
|
|
"name": "my-webpack-project",
|
|
"version": "1.0.0",
|
|
"main": "index.js",
|
|
"repository": "git@github.com:Nicolas-Brossard/MasterMind.git",
|
|
"author": "Florian BOUILLON <florian.bouillon@delta-wings.net>",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@dzeio/object-util": "^1.0.4",
|
|
"parcel": "^1.12.4",
|
|
"serve": "^11.3.2",
|
|
"ts-node": "^9.0.0",
|
|
"typescript": "^4.1.2",
|
|
"webpack": "^5.6.0",
|
|
"webpack-cli": "^4.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"babel-plugin-syntax-dynamic-import": "^6.18.0",
|
|
"terser-webpack-plugin": "^5.0.3",
|
|
"ts-loader": "^8.0.11"
|
|
},
|
|
"description": "My webpack project",
|
|
"scripts": {
|
|
"dev": "webpack --watch",
|
|
"build": "webpack",
|
|
"serve": "serve ./dist"
|
|
}
|
|
}
|