-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.13 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
{
"name": "node-identity-server",
"version": "1.0.0",
"description": "Simple identity server implemented in NodeJS.",
"main": "index.js",
"scripts": {
"start": "nodemon src/server.ts",
"build": "npm run lint && tsc",
"lint": "tslint src/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kockarevicivan/node-identity-server.git"
},
"keywords": [
"identity",
"nodejs"
],
"author": "Ivan Kockarevic",
"license": "MIT",
"bugs": {
"url": "https://github.com/kockarevicivan/node-identity-server/issues"
},
"homepage": "https://github.com/kockarevicivan/node-identity-server#readme",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/jsonwebtoken": "^8.3.2",
"@types/bluebird": "^3.5.26",
"@types/mongoose": "^5.3.23",
"@types/express": "^4.16.1",
"nodemon": "^1.18.10",
"ts-node": "^8.0.3",
"tslint": "^5.14.0",
"typescript": "^3.3.4000"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"bluebird": "^3.5.3",
"body-parser": "^1.18.3",
"express": "^4.16.4",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.4.19"
}
}