-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.15 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
{
"name": "tunemyles-be-v2",
"version": "2.0.0",
"description": "Back-End for Tunemyles Project",
"main": "src/index.ts",
"engines": {
"node": ">=12.0.0",
"npm": ">=6.0.0"
},
"scripts": {
"prepare": "husky install",
"start": "node",
"test": "jest",
"build": "tsc -p tsconfig.json",
"dev": "SET NODE_ENV=development& nodemon",
"dev:test": "SET NODE_ENV=test& nodemon",
"dev:prettier": "concurrently \"npm run nodemon\" \"npm run prettier-watch\"",
"ts-node": "ts-node",
"nodemon": "nodemon src/index.ts",
"prettier-watch": "onchange \"**/*\" -- prettier --write --ignore-unknown {{changed}}",
"eslint-watch": "onchange \"**/*\" -- eslint {{changed}} --fix",
"lint": "eslint src",
"prettier": "prettier --write .",
"lint-staged": "lint-staged",
"compile-schemas": "json2ts -i schemas -o types",
"yaml2json": "yaml2json",
"json2yaml": "json2yaml",
"seq-auto": "sequelize-auto -o \"./test/models\" -h localhost -u root -p 3306 -x root -e mysql --cm p --cf p -l ts -d"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fikryfahrezy/tunemyles-be-v2.git"
},
"author": "frz",
"license": "ISC",
"bugs": {
"url": "https://github.com/fikryfahrezy/tunemyles-be-v2/issues"
},
"homepage": "https://github.com/fikryfahrezy/tunemyles-be-v2#readme",
"devDependencies": {
"@babel/core": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"@babel/preset-typescript": "^7.12.13",
"@tsconfig/recommended": "^1.0.1",
"@types/bcrypt": "^3.0.0",
"@types/busboy": "^0.2.3",
"@types/cls-hooked": "^4.3.3",
"@types/jest": "^26.0.20",
"@types/jsonwebtoken": "^8.5.0",
"@types/md5": "^2.3.0",
"@types/node": "^14.14.25",
"@types/pino": "^6.3.5",
"@types/pump": "^1.1.0",
"@types/supertest": "^2.0.11",
"@types/validator": "^13.1.3",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"babel-jest": "^26.6.3",
"concurrently": "^5.3.0",
"eslint": "^7.19.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"husky": "^5.0.9",
"jest": "^26.6.3",
"json-schema-to-typescript": "^10.1.3",
"lint-staged": "^10.5.4",
"nodemon": "^2.0.7",
"onchange": "^7.1.0",
"prettier": "^2.2.1",
"sequelize-auto": "^0.7.11",
"supertest": "^6.1.3",
"ts-node": "^9.1.1",
"typescript": "^4.1.3",
"yamljs": "^0.3.0"
},
"dependencies": {
"bcrypt": "^5.0.0",
"cls-hooked": "^4.2.2",
"dotenv": "^8.2.0",
"fastify": "^3.11.0",
"fastify-cookie": "^5.1.0",
"fastify-cors": "^5.2.0",
"fastify-helmet": "^5.2.0",
"fastify-multipart": "^4.0.0",
"fastify-rate-limit": "^5.0.1",
"fastify-request-context": "^2.1.3",
"fastify-sensible": "^3.1.0",
"fastify-static": "^3.4.0",
"fastify-swagger": "^4.3.0",
"joi": "^17.4.0",
"jsonwebtoken": "^8.5.1",
"make-promises-safe": "^5.1.0",
"md5": "^2.3.0",
"middie": "^5.2.0",
"mysql2": "^2.2.5",
"pino": "^6.11.1",
"pump": "^3.0.0",
"sequelize": "^6.5.0",
"slugify": "^1.4.6"
}
}