-
Notifications
You must be signed in to change notification settings - Fork 208
/
Copy pathpackage.json
123 lines (123 loc) · 3.51 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "ever-traduora-api",
"version": "0.19.3",
"license": "AGPL-3.0-only",
"homepage": "https://traduora.co",
"repository": {
"type": "git",
"url": "git+https://github.com/ever-co/ever-traduora.git"
},
"bugs": {
"url": "https://github.com/ever-co/ever-traduora/issues"
},
"private": true,
"author": {
"name": "Ever Co. LTD",
"email": "ever@ever.co",
"url": "https://ever.co"
},
"scripts": {
"fmt": "prettier --write \"src/**/*.ts\"",
"start": "cross-env TR_MAIL_DEBUG=true TR_CORS_ENABLED=true nodemon",
"build": "tsc && copyfiles src/templates/**/* ../dist",
"clean": "rimraf ../dist/src ../dist/test",
"lint": "tslint -p tsconfig.json -c tslint.json",
"test": "cross-env NODE_ENV=test jest",
"test:watch": "cross-env NODE_ENV=test TR_ACCESS_LOGS_ENABLED=false jest --watch",
"test:e2e": "cross-env NODE_ENV=e2e TR_DEFAULT_PROJECT_PLAN=default TR_ACCESS_LOGS_ENABLED=false TR_DB_DATABASE=tr_e2e jest --config ./test/jest-e2e.json --runInBand --verbose",
"test:ci": "yarn test && yarn test:e2e",
"typeorm": "ts-node node_modules/.bin/typeorm"
},
"dependencies": {
"@nestjs/axios": "^0.0.5",
"@nestjs/common": "^8.0.7",
"@nestjs/core": "^8.0.6",
"@nestjs/jwt": "^8.0.0",
"@nestjs/passport": "^8.0.1",
"@nestjs/platform-express": "^8.0.6",
"@nestjs/swagger": "^5.0.9",
"@nestjs/typeorm": "^8.0.2",
"bcrypt": "^5.0.1",
"class-transformer": "^0.4.0",
"class-validator": "^0.13.1",
"csv": "^5.5.3",
"csv-stringify": "^6.0.5",
"ejs": "^3.1.7",
"generate-password": "^1.6.1",
"gettext-parser": "^4.0.4",
"handlebars": "^4.7.7",
"iconv-lite": "^0.6.3",
"js-yaml": "^4.1.0",
"moment": "^2.29.2",
"morgan": "^1.10.0",
"mysql": "^2.18.1",
"node-native2ascii": "^0.2.0",
"nodemailer": "^6.6.3",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"php-array-parser": "^1.0.1",
"preview-email": "^3.0.5",
"properties": "^1.2.1",
"query-string": "^7.0.0",
"querystring": "^0.2.1",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.3.0",
"strings-file": "^0.0.5",
"swagger-ui-express": "^4.2.0",
"typeorm": "^0.2.37",
"xliff": "^5.6.2",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@nestjs/testing": "^8.0.6",
"@types/bcrypt": "^5.0.0",
"@types/csv-stringify": "^3.1.0",
"@types/express": "^4.17.13",
"@types/handlebars": "^4.1.0",
"@types/iconv-lite": "^0.0.1",
"@types/jest": "^26.0.23",
"@types/js-yaml": "^4.0.1",
"@types/moment": "^2.13.0",
"@types/morgan": "^1.9.2",
"@types/node": "^15.0.2",
"@types/nodemailer": "^6.4.4",
"@types/supertest": "^2.0.11",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"jest": "^27.1.1",
"nodemon": "^2.0.7",
"prettier": "^2.4.0",
"rimraf": "^3.0.2",
"semver-regex": "^4.0.3",
"supertest": "^6.2.2",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.5",
"ts-node": "^10.2.1",
"tsconfig-paths": "^3.11.0",
"tslint": "^6.1.3",
"typescript": "4.2.3",
"webpack": "^5.37.0",
"webpack-cli": "^4.7.0",
"webpack-node-externals": "^1.7.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"testTimeout": 30000,
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"engines": {
"node": ">=14.0.0",
"yarn": ">=1.13.0"
},
"snyk": true
}