-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
91 lines (91 loc) · 2.74 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
{
"name": "api-seed",
"version": "0.0.1",
"description": "API-seed is a tool that helps developers develop their APIs better and faster.",
"main": "dist/scripts/start.js",
"repository": {
"type": "git",
"url": "https://bitbucket.org/anzemur/api-seed/src/master/"
},
"scripts": {
"dev": "concurrently --kill-others \"tsc -w\" \"nodemon dist/scripts/start.js\"",
"build-ts": "tsc",
"postinstall": "npm run build-ts",
"start": "tsc && node dist/scripts/start.js",
"seed": "tsc && node dist/scripts/seed.js",
"watch-node": "nodemon dist/scripts/start.js",
"watch-ts": "tsc -w",
"test": "mocha -r ts-node/register ./src/tests/**/*.test.ts",
"lint": "tslint --project tsconfig.json \"src/**/*.ts?(x)\""
},
"author": "Anze Mur <[email protected]>",
"license": "ISC",
"devDependencies": {
"@nuxt/typescript": "^2.8.1",
"@types/bcryptjs": "^2.4.2",
"@types/chai": "^4.1.7",
"@types/cors": "^2.8.5",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.16.1",
"@types/express-rate-limit": "^3.3.0",
"@types/joi": "^14.3.3",
"@types/jsonwebtoken": "^8.3.2",
"@types/mocha": "^5.2.6",
"@types/mongoose": "^5.5.3",
"@types/nodemailer": "^4.6.8",
"@types/passport": "^1.0.0",
"@types/passport-facebook": "^2.1.9",
"@types/passport-facebook-token": "^0.4.33",
"@types/passport-jwt": "^3.0.1",
"@types/redis": "^2.8.13",
"@types/supertest": "^2.0.7",
"concurrently": "^2.2.0",
"node-sass": "^4.12.0",
"sass-loader": "^7.2.0",
"tslint": "^5.16.0",
"tslint-sonarts": "^1.9.0",
"nodemon": "^1.19.0",
"typescript": "^3.4.5",
"vee-validate": "^2.2.14",
"supertest": "^4.0.2",
"chai": "^4.2.0",
"mocha": "^6.1.4",
"ts-node": "^8.3.0"
},
"dependencies": {
"@hapi/joi": "^15.0.3",
"@nuxtjs/auth": "^4.8.1",
"@nuxtjs/axios": "^5.3.6",
"autobind-decorator": "^2.4.0",
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"bootstrap": "^4.1.3",
"bootstrap-vue": "^2.0.0-rc.11",
"chart.js": "^2.8.0",
"cors": "^2.8.5",
"date-fns": "^2.9.0",
"dotenv": "^8.0.0",
"express": "^4.17.0",
"express-device": "^0.4.2",
"express-rate-limit": "^5.0.0",
"joi": "^14.3.1",
"jsonwebtoken": "^8.5.1",
"luxon": "^1.17.2",
"moment": "^2.24.0",
"mongodb": "^3.2.6",
"mongoose": "^5.5.11",
"nodemailer": "^6.2.1",
"nuxt": "^2.8.1",
"passport": "^0.4.0",
"passport-facebook-token": "^3.3.0",
"passport-google-token": "^0.1.2",
"passport-jwt": "^4.0.0",
"rate-limiter-flexible": "^1.0.2",
"redis": "^2.8.0",
"typegoose": "^5.6.0",
"vue-chartjs": "^3.4.2",
"vue-datetime": "^1.0.0-beta.10",
"weekstart": "^1.0.0",
"winston": "^3.2.1"
}
}