-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.1 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.1 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
{
"name": "gotase",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "ts-node-dev --respawn --pretty --transpile-only src/main.ts",
"build": "tsc -p . && mv -i -v static build/",
"proq": "NODE_PATH=./build node build/main.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/i18n": "^0.13.0",
"@types/jsonwebtoken": "^8.5.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"express-validator": "^6.11.1",
"helmet": "^4.6.0",
"i18n": "^0.13.3",
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^2.0.3",
"lodash": "^4.17.21",
"mongoose": "^5.12.13"
},
"devDependencies": {
"@types/cors": "^2.8.10",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.12",
"@types/express-jwt": "^6.0.1",
"@types/helmet": "^4.0.0",
"@types/lodash": "^4.14.172",
"@types/mongoose": "^5.11.97",
"@types/node": "^15.12.1",
"ts-node-dev": "^1.1.6",
"typescript": "^4.3.2"
}
}