-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.53 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
{
"name": "stackoverflow-auth-microservice",
"version": "1.0.0",
"description": "A nodejs service consuming the Stackoverflow API",
"main": "index.js",
"scripts": {
"test": "mocha --config ./mocharc.jsonc --recursive --exit --timeout 30000",
"start": "node ./dist",
"start:dev": "nodemon ./src/index.ts",
"build": "npm run clean && tsc -p tsconfig-build.json",
"prestart": "npm run build",
"clean": "rm -rf dist"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.26.1",
"dotenv": "^16.0.0",
"express": "^4.17.1",
"express-session": "^1.17.2",
"module-alias": "^2.2.2",
"nodemon": "^2.0.15",
"passport": "^0.5.2",
"passport-atlassian-oauth2": "^2.1.0",
"passport-github2": "^0.1.12",
"passport-oauth2": "^1.6.1",
"passport-stackapps-ts": "^1.0.3",
"typescript-ioc": "^3.2.2"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/express": "^4.17.9",
"@types/express-session": "^1.17.4",
"@types/mocha": "^8.2.0",
"@types/passport": "^1.0.7",
"@types/passport-github2": "^1.2.5",
"@types/passport-oauth2": "^1.4.11",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^7.9.0",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"_moduleAliases": {
"@controllers": "dist/controllers",
"@service": "dist/service",
"@utils": "dist/utils"
}
}