-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.01 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
{
"name": "expressjs-framework",
"version": "0.2.0",
"description": "A expressjs framework",
"main": "dist",
"scripts": {
"build": "tsc"
},
"eslintConfig": {
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 7,
"sourceType": "module"
},
"env": {
"node": true
},
"rules": {
"no-console": 0,
"no-unused-vars": 1
}
},
"repository": "bammoo/expressjs-framework",
"author": "John Xiao <[email protected]>",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-jwt": "^5.3.1",
"fs-extra": "4.0.0",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.9.1",
"pino": "^5.11.3",
"redis": "^2.8.0",
"reflect-metadata": "^0.1.13",
"shortid": "^2.2.11"
},
"devDependencies": {
"@types/async": "^2.0.45",
"@types/node": "^9.4.6",
"eslint": "^3.1.1",
"pino-pretty": "^2.5.0",
"typescript": "^3.3.3"
}
}