This commit is contained in:
Alice Gaudon 2020-04-23 10:45:58 +02:00
parent b94e772269
commit 6aa9250fe9
1 changed files with 49 additions and 0 deletions

49
dist/package.json vendored Normal file
View File

@ -0,0 +1,49 @@
{
"name": "wms-core",
"version": "0.1.1",
"description": "Node web framework",
"repository": "git@gitlab.com:ArisuOngaku/wms-core.git",
"author": "Alice Gaudon <alice@gaudon.pro>",
"license": "MIT",
"publishConfig": {
"registry": "http://127.0.0.1:4873",
"access": "restricted"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -r dist && tsc && cp package.json dist/",
"publish_to_local": "yarn build && cd dist && yarn publish"
},
"devDependencies": {
"@types/config": "^0.0.36",
"@types/connect-flash": "^0.0.35",
"@types/connect-redis": "^0.0.13",
"@types/cookie": "^0.3.3",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.6",
"@types/mjml": "^4.0.4",
"@types/mysql": "^2.15.10",
"@types/nodemailer": "^6.4.0",
"@types/nunjucks": "^3.1.3",
"@types/on-finished": "^2.3.1",
"@types/uuid": "^7.0.2",
"@types/ws": "^7.2.4",
"typescript": "^3.8.3"
},
"dependencies": {
"config": "^3.3.1",
"connect-flash": "^0.1.1",
"connect-redis": "^4.0.4",
"cookie": "^0.4.1",
"cookie-parser": "^1.4.5",
"express": "^4.17.1",
"mjml": "^4.6.2",
"mysql": "^2.18.1",
"nodemailer": "^6.4.6",
"nunjucks": "^3.2.1",
"on-finished": "^2.3.0",
"uuid": "^7.0.3",
"ws": "^7.2.3"
}
}