-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.04 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
{
"name": "mocbot-api",
"version": "1.4.7",
"description": "API for MOCBOT",
"main": "src/server.js",
"scripts": {
"test": "jest tests",
"ts-node": "ts-node",
"tsc": "tsc --project tsconfig.prod.json --noEmit --noImplicitAny",
"lint": "eslint src tests",
"lint-fix": "eslint --fix src tests",
"start": "node dist/server.js",
"start:dev": "nodemon src/server.ts",
"build": "rimraf dist && tsc --build tsconfig.prod.json && tsc-alias",
"jest": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MasterOfCubesAU/mocbot-api.git"
},
"author": "MasterOfCubesAU, samiam",
"license": "ISC",
"bugs": {
"url": "https://github.com/MasterOfCubesAU/mocbot-api/issues"
},
"homepage": "https://github.com/MasterOfCubesAU/mocbot-api#readme",
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.14",
"@types/http-errors": "^2.0.1",
"@types/jest": "^29.2.4",
"@types/lodash": "^4.14.191",
"@types/morgan": "^1.9.3",
"@types/strip-color": "^0.1.0",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^9.0.0",
"@types/yamljs": "^0.2.31",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"eslint": "^8.29.0",
"eslint-plugin-jest": "^27.1.6",
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"sync-request": "^6.1.0",
"ts-jest": "^29.0.3",
"tsconfig-paths": "^4.1.1",
"typescript": "^4.9.4"
},
"dependencies": {
"@types/express-serve-static-core": "^4.17.31",
"chalk": "^4.0.0",
"cors": "^2.8.5",
"date-fns": "^2.29.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"http-errors": "^2.0.0",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"mysql2": "^2.3.3",
"rimraf": "^3.0.2",
"strip-color": "^0.1.0",
"swagger-themes": "^1.2.23",
"swagger-ui-express": "^4.6.0",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.2",
"uuid": "^9.0.0",
"winston": "^3.8.2",
"winston-daily-rotate-file": "^4.7.1",
"yamljs": "^0.3.0"
}
}