-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.31 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
{
"name": "@gephi/root",
"description": "Various TypeScript helper modules used in the web Gephi ecosystem",
"homepage": "https://gephi.org",
"bugs": "http://github.com/gephi/typescript-utils/issues",
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "npm exec --workspaces -- npx rimraf node_modules && npx rimraf node_modules",
"build": "preconstruct build",
"prettify": "prettier --write .",
"lint": "eslint .",
"test": "npm run test --workspaces",
"start": "npm run start --workspace=@gephi/ts-utils-storybook",
"postinstall": "preconstruct dev",
"postpublish": "preconstruct dev",
"prepublishOnly": "npm run lint && npm run test && npm run build"
},
"dependencies": {
"@babel/core": "^7.24.0",
"@babel/preset-typescript": "^7.23.3",
"@preconstruct/cli": "^2.8.3",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-storybook": "^0.8.0",
"lerna": "^8.1.2",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"typescript": "^5.4.2",
"typescript-eslint": "^7.2.0"
},
"preconstruct": {
"packages": [],
"exports": {
"importConditionDefaultExport": "default"
}
}
}