-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.73 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
50
51
52
53
54
55
56
57
58
59
60
{
"name": "skedulo-be-test",
"version": "1.0.0",
"description": "https://github.com/Skedulo/backend-tech-test#the-sound-of-music",
"main": "index.js",
"repository": "git@github.com:henry0hai/skedulo-be-test",
"author": "henry0hai <henry0hai@gmail.com>",
"license": "MIT",
"private": true,
"scripts": {
"preserve": "yarn swagger",
"serve": "yarn dev:server --raw",
"build": "yarn build:server",
"dev:server": "nodemon --config ./nodemon.config.json",
"build:server": "rimraf dist/server && tsc -p tsconfig.json",
"start": "node dist/server/app.js",
"lint": "vue-cli-service lint",
"test": "jest",
"swagger": "tsoa spec --basePath /api/v1",
"routes-gen": "tsoa routes"
},
"dependencies": {
"axios": "^0.23.0",
"core-js": "^3.6.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"moment": "^2.29.1",
"swagger-ui-express": "^4.1.6",
"tsoa": "^3.12.0",
"yargs": "^17.2.1"
},
"devDependencies": {
"@types/body-parser": "^1.19.1",
"@types/cors": "^2.8.12",
"@types/dotenv": "^4.0.3",
"@types/express": "^4.17.13",
"@types/faker": "^5.5.8",
"@types/jest": "^27.0.2",
"@types/node": "^16.10.9",
"@types/swagger-ui-express": "^4.1.3",
"@types/validator": "^13.6.3",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"ansi-regex": "^6.0.1",
"concurrently": "^5.1.0",
"faker": "^5.5.3",
"jest": "^27.2.5",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5",
"pg": "^8.7.1",
"prettier": "^1.19.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.5",
"ts-node": "^8.8.2",
"typeorm": "^0.2.38",
"typescript": "^4.4.4"
}
}