-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.46 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
{
"name": "open-authenticator",
"version": "1.1.0",
"description": "Open Authenticator platform.",
"main": "dist/index.js",
"repository": "[email protected]:Scharkee/open-authenticator.git",
"author": "Matas Rastenis <[email protected]>",
"typings": "dist/index.d.ts",
"license": "MIT",
"scripts": {
"test": "jest",
"tsc": "tsc",
"build": "tsc",
"install": "yarn run build",
"start": "node dist/index.js",
"launch": "yarn build && yarn start",
"demo": "node demo.js",
"strategies": "node scripts/strategies.js",
"restore": "node scripts/restore.js",
"config": "node scripts/configuration.js",
"setup": "yarn run config && yarn run strategies",
"dev": "concurrently \"tsc -w\" \"nodemon dist/app.js\""
},
"dependencies": {
"@types/express-session": "^1.17.0",
"await-to-js": "^2.1.1",
"chalk": "^4.1.0",
"concurrently": "^5.1.0",
"cors": "^2.8.5",
"crypto-random-string": "^3.2.0",
"csurf": "^1.11.0",
"express": "^4.17.1",
"express-session": "^1.17.0",
"helmet": "^4.2.0",
"inquirer": "^7.1.0",
"moment": "^2.24.0",
"ora": "^5.1.0",
"passport": "^0.4.1",
"path": "^0.12.7",
"pug": "^3.0.0",
"pushover-notifications": "^1.2.2",
"serve-favicon": "^2.5.0"
},
"devDependencies": {
"@types/express": "^4.17.2",
"@types/node": "^14.14.14",
"axios": "^0.21.1",
"fs-extra": "^9.0.0",
"nodemon": "^2.0.2",
"typescript": "^4.1.3"
}
}