-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.74 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
{
"name": "lunox-api",
"version": "2.0.0-next",
"private": true,
"description": "Lunox App without View",
"main": "index.js",
"scripts": {
"artisan": "npm run build && node dist/artisan.js",
"artisan:prod": "NODE_ENV=production node dist/artisan.js",
"build": "lunox prod",
"dev": "lunox dev",
"serve": "lunox serve",
"lint": "tsc --noEmit && prettier . --check && eslint . --fix",
"prettier": "prettier . --write",
"format": "npm run prettier && npm run lint",
"test": "APP_ENV=testing vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kodepandai/lunox.git"
},
"keywords": [
"laravel",
"nodejs",
"polka",
"api",
"mvc"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/kodepandai/lunox/issues"
},
"homepage": "https://github.com/kodepandai/lunox#readme",
"dependencies": {
"@kodepandai/flydrive": "3.0.1",
"@kodepandai/flydrive-s3": "3.0.1",
"@lunoxjs/auth": "2.0.0-beta.1",
"@lunoxjs/core": "2.0.0-beta.1",
"@lunoxjs/eloquent": "2.0.0-beta.1",
"@lunoxjs/filesystem": "2.0.0-beta.1",
"@lunoxjs/validation": "2.0.0-beta.1",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"mysql": "^2.18.1"
},
"devDependencies": {
"@lunoxjs/test": "2.0.0-beta.1",
"@swc/core": "^1.3.99",
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/formidable": "^3.4.5",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.54.0",
"prettier": "^3.1.0",
"supertest": "^6.3.3",
"tslib": "^2.6.2",
"tsup": "^8.0.1",
"typescript": "^5.3.2",
"vitest": "^0.34.6"
},
"type": "module"
}