-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.24 KB
/
package.json
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "chatappbackend",
"version": "1.0.0",
"description": "",
"main": "src/app.ts",
"scripts": {
"start:prod": "export NODE_ENV=production && node --unhandled-rejections=strict ./dist/app.js",
"clean": "npx rimraf ./dist",
"build": "tsc --project './tsconfig.json'",
"start:dev": "export DEBUG=* && export NODE_ENV=developer && ts-node-dev --files --inspect --respawn --pretty --transpile-only src/app.ts",
"test:integration": "export NODE_ENV=test && tsc && mocha -r dotenv/config -r ts-node/register 'src/**/__test__/integration/*.spec.ts' --unhandled-rejections=strict",
"test:integration:debug": "export DEBUG=* && npm run test:integration",
"test:unit": "export NODE_ENV=test && tsc && mocha -r dotenv/config -r ts-node/register 'src/**/__test__/unit/*.spec.ts' --files --unhandled-rejections=strict",
"test:unit:debug": "export DEBUG=* && npm run test:unit"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.1",
"cluster": "^0.7.7",
"connect-ensure-login": "^0.1.1",
"cors": "^2.8.5",
"debug": "^4.3.3",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-validator": "^6.14.0",
"express-winston": "^4.2.0",
"faker": "^5.5.3",
"helmet": "^5.0.1",
"moment": "^2.29.1",
"mongoose": "^6.0.14",
"oauth2orize": "^1.11.1",
"passport": "^0.5.0",
"passport-http": "^0.3.0",
"passport-http-bearer": "^1.0.1",
"passport-local": "^1.0.0",
"passport-oauth2-client-password": "^0.1.2",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/cors": "^2.8.12",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.13",
"@types/faker": "^5.5.9",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"babel-jest": "^27.4.2",
"chai": "^4.3.4",
"eslint": "^8.4.1",
"eslint-plugin-node": "^11.1.0",
"install": "^0.13.0",
"mocha": "^9.1.3",
"mongodb-memory-server": "^8.1.0",
"npm": "^8.3.0",
"regenerator-runtime": "^0.13.9",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.21",
"supertest": "^6.1.6",
"ts-node": "^10.4.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.2"
}
}