-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 899 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 899 Bytes
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
{
"name": "tschannel",
"version": "1.0.0",
"description": "Create a multi-channel forum api. Can use any stack, but must use typescript, be deployable, and of production quality. Try using graphql or grpc for fun, but REST is ok too. Try using docker containers for fun if you want. Show how you would like to write documentation and testing if possible.",
"main": "bulid/MultiChannel.js",
"files": [
"bulid/**/*"
],
"scripts": {
"test": "jest",
"preinstall": "npm i -g typescript",
"build": "tsc -p tsconfig.build.json"
},
"keywords": [],
"author": "",
"license": "ISC",
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"devDependencies": {
"@types/jest": "^28.1.1",
"jest": "^28.1.1",
"ts-jest": "^28.0.5"
},
"dependencies": {
"express": "^4.18.1",
"express-graphql": "^0.12.0",
"graphql": "^16.5.0"
}
}