-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 922 Bytes
/
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
{
"name": "typescript-challenge",
"version": "1.0.0",
"description": "Project to resolve a typescript challenge",
"main": "index.js",
"scripts": {
"start": "node --inspect=5080 -r ts-node/register ./src/server.ts",
"build": "npm run lint && npm run format && tsc",
"format": "prettier --write \"src/**/*.ts\"",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "tslint --project ."
},
"author": "Arif Nawaz",
"license": "ISC",
"devDependencies": {
"prettier": "^2.5.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
},
"dependencies": {
"@types/express": "^4.17.13",
"axios": "^0.25.0",
"dotenv": "^16.0.0",
"express": "^4.17.2",
"mongoose": "^6.2.0",
"swagger-ui-express": "^4.3.0",
"tslint": "^6.1.3",
"tslint-config-airbnb": "^5.11.2",
"tslint-config-prettier": "^1.18.0"
},
"engines": {
"node": "14.x"
}
}