-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.98 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.98 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
69
{
"name": "typescript-backend",
"version": "1.0.0",
"license": "MIT",
"main": "src/index.ts",
"scripts": {
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q src/index.ts\"",
"test": "NODE_ENV=test mocha --recursive 'app/feature/**/*.test.ts' --exit",
"build": "npx tsc",
"start": "node dist/index.js"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"eslint": "^8.30.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"helmet": "^6.0.1",
"morgan": "^1.10.0",
"nodemon": "^2.0.22",
"swagger-ui-express": "^4.6.2",
"typescript": "^5.0.4"
},
"dependencies": {
"@types/body-parser": "^1.19.2",
"@types/chai": "^4.3.4",
"@types/elasticsearch": "^5.0.40",
"@types/lodash.merge": "^4.6.7",
"@types/mocha": "^10.0.1",
"@types/sinon": "^10.0.13",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"axios": "^1.3.4",
"bigdecimal": "^0.6.1",
"bignumber.js": "^9.0.2",
"bluebird": "^3.7.2",
"chai": "^4.3.7",
"chai-http": "^4.3.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"class-validator-jsonschema": "^5.0.0",
"concurrently": "^8.0.1",
"dotenv": "^16.0.3",
"dotenv-extended": "^2.9.0",
"dotenv-parse-variables": "^2.0.0",
"express": "^4.18.2",
"express-swagger-generator": "^1.1.17",
"express-validator": "^6.15.0",
"hex2dec": "^1.1.2",
"jsonwebtoken": "^9.0.0",
"mailchecker": "^5.0.8",
"mocha": "^10.2.0",
"moment": "^2.29.4",
"mongoose": "^7.0.3",
"pg": "^8.10.0",
"redis": "^4.6.5",
"sequelize": "^6.31.0",
"slug": "^8.2.2",
"swagger-express-ts": "^1.1.0",
"swagger-jsdoc": "^6.2.8",
"ts-node": "^10.9.1",
"typedi": "^0.10.0",
"util": "^0.12.5",
"winston": "^3.8.2",
"yarn": "^1.22.19"
}
}