-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.94 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.94 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
60
61
62
63
64
65
{
"name": "nodejs",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"start": "ts-node src/index.ts",
"postinstall": "tsc",
"start:dev": "nodemon src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"init-env": "cp .env.example .env",
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"bl": "^5.0.0",
"cloudinary": "^1.26.0",
"cors": "^2.8.5",
"denque": "^1.5.0",
"dotenv": "^8.2.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"express-fileupload": "^1.2.1",
"joi": "^17.4.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.2.10",
"optional-require": "^1.0.3",
"semver": "^7.3.5",
"sift": "^13.5.4",
"swagger-ui-express": "^4.1.6",
"xlsx": "^0.16.9"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/express-fileupload": "^1.1.6",
"@types/jest": "^26.0.23",
"@types/jsonwebtoken": "^8.5.1",
"@types/mongoose": "^5.10.5",
"@types/node": "^15.6.0",
"@types/react": "^17.0.6",
"@types/react-dom": "^17.0.5",
"@types/swagger-ui-express": "^4.1.2",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"eslint": "^7.24.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-react": "^7.23.2",
"nodemon": "^2.0.7",
"prettier": "^2.3.0",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"typescript": "^4.2.4"
}
}