-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.78 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "folksoul_api",
"version": "1.0.0",
"description": "",
"main": "./src/server.ts",
"scripts": {
"start": "node build/server.js",
"user:create": "node build/bin/create-user.js",
"build:watch": "babel src --out-dir build --extensions .ts --copy-files --watch",
"build:prod": "babel src --out-dir build --extensions .ts --copy-files --minified",
"dev": "concurrently \"npm run build:watch\" \"nodemon build/server.js\""
},
"keywords": [],
"author": "Saba Vartasashvili",
"license": "ISC",
"dependencies": {
"@types/request": "^2.48.8",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-validator": "^6.14.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.4.0",
"multer": "^1.4.5-lts.1",
"prompt": "^1.3.0",
"swagger-jsdoc": "^6.2.1",
"swagger-ui-express": "^4.4.0",
"validator": "^13.7.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@babel/cli": "^7.18.6",
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@tsconfig/node16": "^1.0.3",
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"@types/multer": "^1.4.7",
"@types/node": "^18.0.0",
"@types/prompt": "^1.1.2",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@types/yamljs": "^0.2.31",
"babel-plugin-module-resolver": "^4.1.0",
"concurrently": "^7.2.2",
"eslint": "^8.18.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"nodemon": "^2.0.18",
"prettier": "2.6.2",
"ts-node": "^10.8.1",
"typescript": "^4.7.4"
}
}