-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.15 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.15 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
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@data-fair/dev-server",
"version": "2.0.24",
"description": "A development server for optimal development experience of data-fair applications.",
"main": "src/index.js",
"bin": {
"df-dev-server": "src/index.js"
},
"type": "module",
"scripts": {
"build": "tsc",
"build-watch": "tsc --watch",
"dev": "NODE_ENV=development node --watch src/index.js",
"dev-test-app-minimal": "http-server test-apps/minimal --port=3000 --cors --silent",
"dev-test-app-vue3": "cd test-apps/vue3 && npm run dev",
"dev-zellij": "zellij --layout .zellij.kdl",
"prepublishOnly": "npm run lint && npm run build && npm -w ui run build",
"lint": "eslint . && npm -w ui run lint",
"lint-fix": "eslint --fix . && npm -w ui run lint-fix",
"build-types": "df-build-types ."
},
"workspaces": [
"ui"
],
"repository": {
"type": "git",
"url": "git+https://github.com/koumoul-dev/df-dev-server.git"
},
"keywords": [
"data-fair",
"dev"
],
"author": "Alban Mouton <alban.mouton@koumoul.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/koumoul-dev/df-dev-server/issues"
},
"homepage": "https://github.com/koumoul-dev/df-dev-server#readme",
"devDependencies": {
"@data-fair/lib-types-builder": "^1.8.2",
"@types/config": "^3.3.5",
"@types/cors": "^2.8.19",
"@types/debug": "^4.1.12",
"@types/express": "^5.0.3",
"@types/node": "^24.0.7",
"@types/ws": "^8.18.1",
"eslint": "^9.30.0",
"eslint-plugin-vue": "^10.2.0",
"eslint-plugin-vuetify": "^2.5.2",
"http-server": "^14.1.1",
"neostandard": "^0.12.1",
"typescript": "^5.8.3"
},
"dependencies": {
"@data-fair/lib-express": "^1.20.4",
"@parse5/tools": "^0.6.0",
"chalk": "^5.4.1",
"config": "^4.0.0",
"cors": "^2.8.5",
"debug": "^4.4.1",
"dotenv": "^17.0.0",
"escape-string-regexp": "^5.0.0",
"express": "^5.1.0",
"http-proxy-middleware": "^3.0.5",
"parse5": "^7.3.0",
"prom-client": "^15.1.3",
"ws": "^8.18.3"
},
"files": [
"./config/**/*.js",
"./config/**/*.d.ts",
"./ui/dist/**/*",
"./src/**/*.js",
"./src/**/*.d.ts"
]
}