-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.3 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
{
"name": "Travel",
"version": "2.0.1",
"description": "travel project for learning nodejs",
"main": "src/index.js",
"scripts": {
"start": "node dist",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon src/index.ts",
"build": "rimraf dist && tsc && yarn copy-files",
"check": "tsc --project tsconfig.json",
"copy-files": "copyfiles -u 1 src/*.json dist/ "
},
"keywords": [
"travel"
],
"author": "anjit pariyar",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"connect-multiparty": "^2.2.0",
"cors": "^2.8.5",
"dayjs": "^1.11.9",
"dotenv": "^11.0.0",
"express": "^4.17.2",
"express-validator": "^6.14.0",
"gravatar": "^1.8.2",
"https-browserify": "^1.0.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.2.0",
"swagger-jsdoc": "^6.2.1",
"swagger-ui-express": "^4.3.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"@types/mongoose": "^5.11.97",
"@types/node": "^17.0.14",
"@types/swagger-ui-express": "^4.1.3",
"concurrently": "^7.0.0",
"copyfiles": "^2.4.1",
"nodemon": "^2.0.15",
"rimraf": "^5.0.0",
"ts-loader": "^9.4.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
}
}