-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.73 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
{
"name": "vila-selvia-api",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "yarn run build && node dist/src/index.js",
"build": "rimraf ./dist && npx tsc && npx tsc-alias && yarn copy-files",
"dev": "nodemon src/index.ts",
"copy-files": "cp -r ./src/public/ ./dist/src/ && cp -r ./src/views ./dist/src/",
"lt": "lt --p 9090 --subdomain vila-selvia-api"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yotozangue/vila-selvia-api.git"
},
"keywords": [
"jwt"
],
"author": "yotozangue",
"license": "MIT",
"bugs": {
"url": "https://github.com/yotozangue/vila-selvia-api/issues"
},
"homepage": "https://github.com/yotozangue/vila-selvia-api#readme",
"dependencies": {
"@types/gridfs-stream": "^0.5.36",
"app-root-path": "^3.1.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"express": "^4.18.1",
"express-fileupload": "^1.4.0",
"jsonwebtoken": "^8.5.1",
"method-override": "^3.0.0",
"mongoose": "^6.6.3",
"path": "^0.12.7",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"tsc": "^2.0.4",
"typescript": "^4.8.4"
},
"devDependencies": {
"@arekushii/ts-aspect": "^3.1.4",
"@typegoose/typegoose": "^9.12.1",
"@types/app-root-path": "^1.2.4",
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/express-fileupload": "^1.4.1",
"@types/jsonwebtoken": "^8.5.9",
"@types/method-override": "^0.0.32",
"@types/node": "^18.7.23",
"lt": "^0.3.3",
"nodemon": "^2.0.20"
}
}