This commit is contained in:
Thomas Hobson 2021-02-21 03:13:56 +13:00
parent d8239c2703
commit 91420c39d7
No known key found for this signature in database
GPG key ID: 9F1FD9D87950DB6F
18 changed files with 2328 additions and 0 deletions

22
api/package.json Normal file
View file

@ -0,0 +1,22 @@
{
"name": "piston-api",
"version": "3.0.0",
"description": "API for piston - a high performance code execution engine",
"main": "src/index.js",
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"is-docker": "^2.1.1",
"js-yaml": "^4.0.0",
"logplease": "^1.2.15",
"nocamel": "*",
"node-fetch": "^2.6.1",
"semver": "^7.3.4",
"uuid": "^8.3.2",
"yargs": "^16.2.0"
},
"devDependencies": {
"eslint": "^7.20.0",
"eslint-plugin-snakecasejs": "^2.2.0"
}
}