This repository has been archived by the owner on Nov 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 2.3 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
{
"name": "@equinor/echo-core-tools",
"version": "0.0.0",
"description": "Echo Core - Core functionality for the echo.equinor.com",
"scripts": {
"echo-test": "jest",
"echo-test-coverage": "jest --coverage",
"core-start": "lerna run start --stream --scope @equinor/echo-core",
"bump-version": "lerna version --conventional-commits --yes",
"lerna-install": "lerna exec npm install",
"lerna-publish-install": "lerna exec npm ci",
"bootstrap": "lerna bootstrap",
"lerna-build": "lerna run build",
"lerna-link": "lerna exec npm link --scope @equinor/echo-core",
"lerna-unlink": "lerna exec npm unlink --scope @equinor/echo-core",
"echo-publish": "lerna publish from-package --yes --no-verify-access",
"test-wo-install": "jest --watchAll",
"test": "npm ci & jest --watchAll",
"test-coverage": "npm ci & jest --coverage --watchAll",
"lint": "eslint --ext .js,.jsx,.ts,.tsx packages --color",
"build-docs": "npx typedoc",
"echo-update-next": "echo-update -c",
"echo-update-all": "echo-update -a"
},
"author": "Echo Core Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/equinor/EchoCore"
},
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@equinor/echo-update": "^1.3.1",
"@types/jest": "^29.5.2",
"@types/node": "^18.16.18",
"@types/react": "^18.2.14",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"babel-jest": "^29.5.0",
"babel-plugin-polyfill-corejs3": "^0.8.1",
"babel-plugin-polyfill-regenerator": "^0.5.0",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-expo": "^48.0.2",
"lerna": "^6.6.2",
"prettier": "^2.8.8",
"tslib": "^2.6.0",
"typedoc": "^0.24.8",
"typescript": "^4.9.5"
}
}