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
30
31
32
33
|
{
"name": "naive-server",
"version": "1.0.0",
"description": "A naive NoSQL database server",
"scripts": {
"build": "tsc && typedoc --out docs src",
"test": "jest src",
"test:watch": "jest src --watch",
"start": "ts-node bin/index.ts"
},
"bin": {
"naive-server": "node dist/server/bin/index.js"
},
"author": "Nicholas Van Doorn",
"license": "MIT",
"devDependencies": {
"@types/jest": "^23.3.13",
"@types/node": "^10.12.18",
"@types/body-parser": "^1.17.0",
"@types/express": "^4.16.0",
"@types/ws": "^6.0.1",
"jest": "^23.6.0",
"ts-jest": "^23.10.5",
"ts-node": "^7.0.1",
"typedoc": "^0.14.2",
"typescript": "^3.2.4"
},
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.4",
"ws": "^6.1.2"
}
}
|