-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.18 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.18 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "@runwaysocialclub/runwaybase",
"version": "1.0.3",
"description": "Powered up every databases",
"main": "dist/index.js",
"scripts": {
"test": "jest --no-cache --detectOpenHandles --coverage --runInBand --forceExit ",
"build": "npm test && tsc && tsc -p tsconfig.browser.json && webpack",
"buildWithoutTest": "tsc && tsc -p tsconfig.browser.json && webpack"
},
"types": "dist/index.d.ts",
"files": [
"/dist",
"/dist.browser"
],
"author": "",
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.12",
"@types/sqlite3": "^3.1.7",
"axios": "0.21.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"mongoose": "^5.13.0",
"rxjs": "6.6.7",
"socket.io": "^4.1.2",
"socket.io-client": "4.1.2",
"sqlite3": "^5.0.2",
"uuidv4": "^6.2.10"
},
"devDependencies": {
"@types/chai": "^4.2.19",
"@types/jest": "^26.0.23",
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"esm": "^3.2.25",
"jest": "^27.0.6",
"supertest": "^6.1.3",
"ts-jest": "27.0.0",
"ts-loader": "^9.2.3",
"typescript": "^4.3.5",
"webpack": "^5.42.1",
"webpack-cli": "^4.7.2"
}
}