-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.77 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "mongoose-rest-framework",
"version": "0.3.2",
"description": "Styled after the Django & Django REST Framework, a batteries-include framework for building REST APIs with Node/Express/Mongoose.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc -w",
"lint": "eslint --fix \"src/**/*.ts*\"",
"test": "jest -i"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/joshgachnang/mongoose-rest-framework.git"
},
"keywords": [
"rest",
"api",
"mongoose",
"express"
],
"author": "Josh Gachnang",
"license": "MIT",
"bugs": {
"url": "https://github.com/joshgachnang/mongoose-rest-framework/issues"
},
"homepage": "https://github.com/joshgachnang/mongoose-rest-framework#readme",
"dependencies": {
"@sentry/node": "^6.15.0",
"axios": "^0.24.0",
"cron": "^1.8.2",
"expo-server-sdk": "^3.6.0",
"express": "^4.17.1",
"express-session": "^1.17.2",
"generaterr": "^1.5.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"on-finished": "^2.3.0",
"passport": "^0.5.0",
"passport-anonymous": "^1.0.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"scmp": "^2.1.0",
"winston": "^3.3.3"
},
"peerDependencies": {
"mongoose": "^6.1.9"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/chai": "^4.2.22",
"@types/cron": "^1.7.3",
"@types/express": "^4.17.8",
"@types/express-session": "^1.17.4",
"@types/jest": "^26.0.20",
"@types/jsonwebtoken": "^8.5.5",
"@types/lodash": "^4.14.177",
"@types/node": "^14.14.27",
"@types/on-finished": "^2.3.1",
"@types/passport": "^1.0.7",
"@types/passport-anonymous": "^1.0.3",
"@types/passport-jwt": "^3.0.6",
"@types/passport-local": "^1.0.34",
"@types/sinon": "^9.0.5",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"chai": "^4.3.4",
"eslint": "^7.25.0",
"eslint-config-prettier": "^4.1.0",
"eslint-config-ts-fullstack": "^0.1.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-lodash": "^7.1.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-native": "^3.7.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^26.6.3",
"mongoose": "^6.1.9",
"prettier": "^2.5.1",
"sinon": "^7.5.0",
"supertest": "^6.1.6",
"ts-jest": "^26.5.1",
"typescript": "^4.1.5"
},
"prettier": {
"arrowParens": "always",
"bracketSpacing": false,
"printWidth": 100,
"semi": true,
"singleQuote": false,
"trailingComma": "es5",
"useTabs": false
},
"eslintConfig": {
"extends": [
"ts-fullstack"
]
}
}