-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathpackage.json
78 lines (78 loc) · 2.59 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
68
69
70
71
72
73
74
75
76
77
78
{
"name": "flyteconsole",
"version": "1.1.3",
"private": true,
"description": "The web UI for the Flyte platform",
"repository": {
"type": "git",
"url": "https://github.com/flyteorg/flyteconsole"
},
"main": "index.js",
"workspaces": [
"packages/basics/**",
"packages/composites/**",
"packages/plugins/**",
"packages/zapp/**",
"script/generator/**"
],
"scripts": {
"clean": "yarn workspace @flyteconsole/client-app clean",
"start": "yarn workspace @flyteconsole/client-app start",
"start:prod": "yarn workspace @flyteconsole/client-app start:prod",
"build:prod": "yarn workspace @flyteconsole/client-app build:prod",
"build:storybook": "build-storybook",
"generate:package": "yarn workspace @flyteconsole/generator start",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"storybook": "start-storybook -p 6006",
"test": "NODE_ENV=test jest",
"test:clear": "jest --clearCache",
"test-coverage": "NODE_ENV=test jest --coverage"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"keywords": [
"react",
"lyft"
],
"author": "Lyft <[email protected]>",
"license": "Apache-2.0",
"lint-staged": {
"*.{js,jsx,ts,tsx,json}": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"dependencies": {},
"devDependencies": {
"@storybook/addon-actions": "^6.4.19",
"@storybook/addon-essentials": "^6.4.19",
"@storybook/addon-interactions": "^6.4.19",
"@storybook/addon-links": "^6.4.19",
"@storybook/builder-webpack5": "^6.4.19",
"@storybook/manager-webpack5": "^6.4.19",
"@storybook/react": "^6.4.19",
"@storybook/testing-library": "^0.0.9",
"@testing-library/jest-dom": "^5.5.0",
"@testing-library/react": "^10.0.3",
"@testing-library/react-hooks": "^7.0.2",
"ts-jest": "^26.3.0",
"jest": "^26.0.0",
"react-hot-loader": "^4.1.2"
},
"resolutions": {
"@babel/cli": "~7.16.0",
"@babel/core": "~7.16.12",
"@babel/plugin-proposal-class-properties": "~7.16.7",
"@babel/plugin-proposal-decorators": "~7.16.7",
"@babel/plugin-proposal-object-rest-spread": "~7.16.7",
"@babel/preset-env": "~7.16.11",
"@babel/preset-react": "~7.16.7",
"@babel/preset-typescript": "~7.16.7",
"minimist": "1.2.6"
}
}