MasterMind/package.json
Florian Bouillon f7a3ae6815 Base du jeux
Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2020-11-25 16:49:16 +01:00

27 lines
645 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": {
"serve": "^11.3.2",
"typescript": "^4.1.2",
"webpack": "^5.6.0",
"webpack-cli": "^4.2.0"
},
"devDependencies": {
"@webpack-cli/init": "^1.0.3",
"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 ."
}
}