-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 935 Bytes
/
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
{
"name": "passport-steam-openid-sample",
"private": true,
"version": "1.0.0",
"description": "Sample application that uses passport-steam-openid.",
"main": "./dist/app.js",
"scripts": {
"start": "node ./dist/app.js",
"build": "npx tsc"
},
"keywords": [],
"author": "glencoco",
"license": "MIT",
"dependencies": {
"dotenv": "^16.3.1",
"express": "^4.21.2",
"express-session": "^1.18.1",
"passport": "^0.6.0",
"passport-steam-openid": "^1.0.0"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.7",
"@types/node": "^20.3.1",
"@types/passport": "^1.0.12",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-sonarjs": "^0.19.0",
"typescript": "^5.1.3"
}
}