3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-03-14 21:31:50 +00:00
This commit is contained in:
Dragory 2019-03-16 15:40:48 +02:00
parent ea3fde49a6
commit 5a29068bf1
3 changed files with 3929 additions and 1 deletions

6
babel.config.js Normal file
View file

@ -0,0 +1,6 @@
module.exports = {
presets: [
['@babel/preset-env', { targets: { node: 'current' } }],
'@babel/preset-typescript'
]
};

3916
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -4,7 +4,7 @@
"description": "",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"test": "jest src",
"start-dev": "ts-node src/index.ts",
"start-watch": "nodemon",
"precommit": "lint-staged",
@ -51,9 +51,15 @@
"uuid": "^3.3.2"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-typescript": "^7.3.3",
"@types/jest": "^24.0.11",
"@types/node": "^10.12.0",
"@types/tmp": "0.0.33",
"babel-jest": "^24.5.0",
"husky": "^0.14.3",
"jest": "^24.5.0",
"lint-staged": "^7.2.0",
"nodemon": "^1.17.5",
"prettier": "^1.16.4",