-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 2.02 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": "fpsa-api",
"version": "1.4.1",
"description": "The API for the FPSA website",
"author": "Bastiaan Verhaar",
"license": "GPL-2.0",
"repository": {
"url": "https://github.com/federation-purple-study-associations/fpsa-api"
},
"scripts": {
"build": "rm -rf ./dist && tsc -p tsconfig.json && ./node_modules/copyfiles/copyfiles -u 1 \"**/*.hbs\" dist",
"start": "ts-node src/main.ts",
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js --config src/typeorm.config.ts",
"generate-services": "ts-node src/swagger/swagger.builder.ts && openapi-generator-cli generate -g typescript-inversify -i swagger-spec.json -o ../fpsa-site/src/openapi --additional-properties=\"useRxJS6=true\""
},
"dependencies": {
"@nestjs/common": "^8.0.8",
"@nestjs/core": "^8.0.8",
"@nestjs/platform-fastify": "^8.0.8",
"@nestjs/swagger": "^5.1.0",
"@nestjs/typeorm": "^8.0.2",
"axios": "^0.21.4",
"bcrypt": "^5.0.1",
"class-transformer": "^0.4.0",
"class-validator": "^0.13.1",
"dotenv": "^10.0.0",
"fastify-cookie": "^5.3.1",
"fastify-multipart": "^5.0.1",
"fastify-swagger": "^4.12.3",
"handlebars": "^4.7.7",
"jsonwebtoken": "^8.5.1",
"mime-types": "^2.1.32",
"moment": "^2.29.1",
"moment-timezone": "^0.5.33",
"mysql": "^2.18.1",
"nodemailer": "^6.6.5",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.3.0",
"typeorm": "^0.2.37",
"uuid": "^8.3.2"
},
"devDependencies": {
"@nestjs/cli": "^8.1.2",
"@nestjs/schematics": "^8.0.3",
"@openapitools/openapi-generator-cli": "^2.4.7",
"@types/node": "^16.10.2",
"@types/nodemailer": "^6.4.4",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"copyfiles": "^2.4.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"prettier": "^2.4.1",
"ts-loader": "^9.2.6",
"ts-node": "^10.2.1",
"tsconfig-paths": "^3.11.0",
"typescript": "^4.4.3"
}
}