-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
67 lines (67 loc) · 1.99 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
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
{
"name": "@osrd-project/root",
"version": "0.0.1-dev",
"homepage": "https://github.com/osrd-project/osrd-ui#readme",
"repository": {
"type": "git",
"url": "https://github.com/osrd-project/osrd-ui.git"
},
"bugs": {
"url": "https://github.com/osrd-project/osrd-ui/issues"
},
"workspaces": [
"ui-core",
"ui-icons",
"ui-spacetimechart",
"ui-speedspacechart",
"ui-warped-map",
"ui-manchette",
"ui-manchette-with-spacetimechart",
"ui-trackoccupancydiagram",
"storybook"
],
"engines": {
"node": ">=18"
},
"scripts": {
"clean": "npm run clean --workspaces --if-present",
"build": "npm run build --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"storybook": "npm start --workspace=@osrd-project/storybook",
"lerna:changed": "lerna changed",
"lerna:diff": "lerna diff",
"lerna": "lerna",
"lerna:publish": "lerna publish from-package --no-private --yes"
},
"type": "module",
"devDependencies": {
"@rollup/plugin-eslint": "^9.0.5",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.0",
"@types/lodash": "^4.17.13",
"@types/react": "^18.2.40",
"@types/react-dom": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-storybook": "^0.11.0",
"lerna": "^8.1.2",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^6.0.1",
"rollup": "^4.13.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-postcss": "^4.0.2",
"typescript": "^5.4.2",
"vitest": "^2.0.4"
}
}