1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
{
"name": "slam-runner-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon --ext ts --exec \"npm run start\"",
"start": "tsm src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"@tinyhttp/app": "2.0.16",
"@tinyhttp/cors": "2.0.0",
"@tinyhttp/logger": "1.3.0",
"milliparsec": "2.2.1",
"slam-types": "git://github.com/jantuomi/slam-types.git#9de4a1e",
"tmp": "0.2.1",
"tsm": "2.2.1"
},
"devDependencies": {
"@types/node": "17.0.15",
"@typescript-eslint/eslint-plugin": "5.10.2",
"@typescript-eslint/parser": "5.10.2",
"eslint": "8.8.0",
"nodemon": "2.0.15"
}
}
|