-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.01 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
{
"name": "comeapp",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node src/index.ts ts",
"startBuild": "node build/index.js js",
"build": "npx tsc"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.14",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"express-swagger-generator": "^1.1.17",
"http-status": "^1.5.3",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.4",
"mongoose": "^6.6.1",
"swagger-ui-express": "^4.5.0",
"typescript": "^4.8.3"
},
"devDependencies": {
"@types/node": "^18.7.18",
"eslint": "^8.23.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"ts-node": "^10.9.1"
}
}