-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·68 lines (68 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·68 lines (68 loc) · 2.08 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
66
67
68
{
"name": "hackathon-project",
"version": "1.0.0",
"description": "cuHacking Hackathon Project",
"scripts": {
"build": "yarn lint && yarn compile",
"compile": "yarn tsc",
"dev": "NODE_ENV=development; nodemon -L -e ts --watch src --exec 'yarn compile && yarn serve'",
"serve": "yarn node dist/server.js",
"lint": "yarn tsc --noEmit && yarn eslint . --ext .ts,.js --fix",
"start": "yarn build && yarn serve",
"test": "yarn newman run ./tests/postman/Watershed.postman_collection.json -e ./tests/postman/Watershed.postman_environment.json --timeout-request 30000"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/chai": "^4.2.12",
"@types/chai-http": "^4.2.0",
"@types/express": "^4",
"@types/express-fileupload": "^1",
"@types/jwt-simple": "^0.5.33",
"@types/mailgun-js": "^0",
"@types/mime-types": "^2",
"@types/mocha": "^8.0.3",
"@types/morgan": "^1",
"@types/newman": "^5",
"@types/swagger-ui-express": "^4",
"@types/uuid": "^8",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"@yarnpkg/pnpify": "^2.1.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^7.5.0",
"liquid-json": "^0.3.1",
"mime-types": "^2.1.27",
"mocha": "^8.1.3",
"newman": "^5.2.0",
"nodemon": "^2.0.4",
"postman-collection": "^3.6.7",
"prettier": "^2.0.5",
"ts-node-dev": "^1.0.0-pre.52",
"typescript": "^3.9.7"
},
"dependencies": {
"@types/node": "^14.14.22",
"axios": "^0.21.0",
"bcrypt": "^5.0.0",
"class-validator": "^0.12.2",
"client-oauth2": "^4.3.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-fileupload": "^1.2.0",
"jwt-simple": "^0.5.6",
"mailgun-js": "^0.22.0",
"morgan": "^1.10.0",
"nanoid": "^3.1.20",
"openapi-comment-parser": "^1.0.0",
"pg": "^8.3.3",
"reflect-metadata": "^0.1.13",
"simple-git": "^2.31.0",
"swagger-ui-express": "^4.1.4",
"ts-node": "^8.10.2",
"typeorm": "^0.2.25",
"uuid": "^8.3.1"
}
}