-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
84 lines (84 loc) · 2.65 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
79
80
81
82
83
84
{
"private": true,
"name": "pipeline-editor",
"description": "",
"version": "1.12.1",
"workspaces": {
"packages": [
"packages/*"
]
},
"main": "./packages/extension/dist/index.js",
"devDependencies": {
"@babel/core": "^7.13.8",
"@storybook/addon-actions": "^6.4.9",
"@storybook/addon-essentials": "^6.4.9",
"@storybook/addon-links": "^6.4.9",
"@storybook/react": "^6.4.9",
"@testing-library/cypress": "^7.0.4",
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"babel-eslint": "^10.0.0",
"babel-loader": "^8.2.2",
"core-js": "^3.9.1",
"cypress": "^9.2.1",
"eslint": "^7.11.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-header": "^3.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-jest-dom": "^3.6.5",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^3.10.1",
"husky": "^3.1.0",
"jest": "^26.6.3",
"lerna": "^3.22.1",
"lint-staged": "^9.4.3",
"microbundle": "^0.13.0",
"prettier": "^2.2.1",
"start-server-and-test": "^1.12.0",
"ts-jest": "^26.5.1",
"typescript": "4.1.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{tsx,ts,js,md,css,html,json}": [
"prettier --write",
"git add"
]
},
"scripts": {
"clean": "lerna run clean; rm -rf node_modules",
"build": "lerna run build",
"link-all": "lerna run link",
"watch": "FORCE_COLOR=true lerna run watch --parallel --stream",
"sb:start": "start-storybook -p 6006",
"sb:ci": "start-storybook -p 6006 --ci",
"test": "jest",
"test:cover": "jest --coverage",
"test:cypress:dev": "start-server-and-test sb:ci http://localhost:6006 cy:open",
"test:cypress": "start-server-and-test sb:ci http://localhost:6006 cy:run",
"cy:run": "cypress run",
"cy:open": "cypress open",
"lint": "eslint . --ignore-path .gitignore --ext .ts,.tsx,.js,.jsx --max-warnings=0",
"lint:fix": "eslint . --fix --ignore-path .gitignore --ext .ts,.tsx,.js,.jsx",
"format": "prettier --ignore-path .gitignore --write \"**/*.{tsx,ts,js,css,html,json}\"",
"format:check": "prettier --ignore-path .gitignore --check \"**/*.{tsx,ts,js,css,html,json}\"",
"preinstall": "npx force-resolutions -y"
},
"dependencies": {},
"resolutions": {
"immer": "9.0.7",
"prismjs": "1.25.0",
"trim": "0.0.3"
}
}