-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 837 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 837 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
32
33
34
{
"name": "Backend-Testing",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"test": "jest -i",
"start": "tsc; node out/index.js"
},
"dependencies": {
"express": "^4.17.1",
"fs-extra": "^9.1.0",
"lodash": "^4.17.21",
"socket.io": "^4.0.1",
"sqlite3": "^5.0.2",
"ws": "^7.4.4"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/fs-extra": "^9.0.11",
"@types/jest": "^26.0.22",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.37",
"@types/socket.io": "^2.1.13",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"eslint": "^7.23.0",
"jest": "^26.6.3",
"supertest": "^6.1.3",
"ts-jest": "^26.5.5",
"typescript": "^4.2.3"
}
}