-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.85 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.85 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
{
"name": "@gephi/gephi-lite-root",
"homepage": "https://github.com/gephi/gephi-lite",
"license": "gpl-3.0",
"bugs": "https://github.com/gephi/gephi-lite/issues",
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "npm exec --workspaces -- npx rimraf node_modules && npx rimraf node_modules",
"start": "preconstruct dev && npm run start --workspace=@gephi/gephi-lite",
"test": "npm run test --workspaces --if-present",
"test:e2e": "npm run test:e2e --workspaces --if-present",
"lint": "eslint .",
"build": "preconstruct build && npm run build --workspace=@gephi/gephi-lite",
"postinstall": "preconstruct dev",
"postpublish": "preconstruct dev",
"prepublishOnly": "npm run test && npm run lint && npm run build"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@eslint/compat": "^1.2.5",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"@playwright/test": "^1.50.1",
"@preconstruct/cli": "^2.8.10",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/luxon": "^3.6.2",
"@vitest/browser": "^3.0.5",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"globals": "^15.14.0",
"lerna": "^8.2.0",
"playwright": "^1.50.1",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0",
"vitest": "^3.0.5"
},
"preconstruct": {
"packages": [
"packages/sdk",
"packages/broadcast"
],
"exports": {
"importConditionDefaultExport": "default"
}
},
"dependencies": {
"luxon": "^3.6.1"
}
}