This repository was archived by the owner on Apr 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.3 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.3 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
47
48
49
50
51
52
53
{
"name": "@popcorn.moe/auth",
"version": "1.0.0",
"description": "Popcorn.moe Auth Service",
"main": "index.js",
"scripts": {
"start": "babel-node index.js",
"format": "prettier --write 'index.js' 'src/**/*.js'",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Popcorn-moe/Auth.git"
},
"author": "Popcorn-moe",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Popcorn-moe/Auth/issues"
},
"homepage": "https://github.com/Popcorn-moe/Auth#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.24.1",
"husky": "^0.14.3",
"lint-staged": "^7.1.1",
"prettier": "^1.12.1"
},
"dependencies": {
"bcrypt": "^2.0.1",
"body-parser": "^1.18.3",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"express": "^4.16.3",
"express-session": "^1.15.6",
"jsonwebtoken": "^8.2.1",
"md5": "^2.2.1",
"mongodb": "^2.2.35",
"passport": "^0.4.0",
"passport-discord": "^0.1.3",
"passport-local": "^1.0.0",
"passport-oauth2": "^1.4.0",
"passport-strategy": "^1.0.0",
"passport-twitter": "^1.0.4",
"uuid": "^3.2.1"
}
}