-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.46 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.46 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
{
"name": "launchcloud-klass",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install",
"start": "node dist/infrastructure/http/server.js",
"dev": "tsx watch src/infrastructure/http/server.ts",
"build": "tsc",
"lint": "eslint \"src/**/*.{js,ts}\" --fix",
"format": "prettier --write \"src/**/*.{js,ts,json,md}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Matheus-Andrade-30/launchcloud-Klass.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/Matheus-Andrade-30/launchcloud-Klass/issues"
},
"homepage": "https://github.com/Matheus-Andrade-30/launchcloud-Klass#readme",
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^25.3.3",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"husky": "^9.1.7",
"lint-staged": "^16.3.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.8.1",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"dependencies": {
"cors": "^2.8.6",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"mysql2": "^3.20.0"
}
}