Remove python, replace with ts

This commit is contained in:
simojenki
2021-01-26 16:56:00 +11:00
parent 2fdaaf471f
commit 695b92c912
18 changed files with 2125 additions and 21 deletions

30
package.json Normal file
View File

@@ -0,0 +1,30 @@
{
"name": "bonob",
"version": "0.0.1",
"main": "index.js",
"repository": "https://github.com/simojenki/bonob",
"author": "simojenki <simojenki@users.noreply.github.com>",
"license": "GPL-3.0-only",
"dependencies": {
"@types/express": "^4.17.11",
"@types/node": "^14.14.22",
"express": "^4.17.1",
"typescript": "^4.1.3"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"chai": "^4.2.0",
"ts-node": "^9.1.1",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"ts-mockito": "^2.6.1"
},
"scripts": {
"build": "tsc",
"start": "node ./bin/app.js",
"dev": "ts-node ./src/app.ts",
"test": "nyc ./node_modules/.bin/_mocha 'tests/**/*.test.ts'",
"testw": "mocha --require ts-node/register --watch --watch-files tests/**/* tests/**/*.test.ts"
}
}