generated from zeepk/react-redux-typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.58 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
{
"name": "wildlifeserver",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node-dev src/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/mongoose": "^5.11.97",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"eslint": "^7.11.0"
},
"dependencies": {
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-jwt": "^6.1.0",
"express-oauth2-jwt-bearer": "^1.1.0",
"express-openid-connect": "^2.5.2",
"express-session": "^1.17.2",
"googleapis": "^39.2.0",
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^2.0.5",
"module-alias": "^2.2.2",
"mongoose": "^6.0.13",
"ts-node-dev": "^2.0.0",
"typescript": "^4.5.2"
},
"_moduleAliases": {
"@": "src"
},
"engines": {
"node": ">=16.0.0"
},
"prettier": {
"printWidth": 80,
"tabWidth": 4,
"semi": true,
"singleQuote": true,
"bracketSpacing": true,
"jsxBracketSameLine": false,
"arrowParens": "avoid",
"overrides": [
{
"files": "*.ts",
"options": {
"parser": "typescript"
}
}
]
}
}