MasterMind/package.json
Florian Bouillon a2ed5c57f0
pouet
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-02-17 09:24:45 +01:00

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"
}
}