forked from AxisCommunications/practical-react-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.9 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
{
"name": "practical-react-components",
"version": "1.18.2",
"private": true,
"description": "Practical react components library",
"homepage": "https://github.com/AxisCommunications/practical-react-components",
"license": "MIT",
"engines": {
"node": ">=16.0.0",
"yarn": ">=1.21.1"
},
"workspaces": [
"packages/*"
],
"scripts": {
"setup": "yarn install && yarn build:libs",
"build:libs": "yarn workspaces foreach --topological --no-private run build",
"build:docs": "yarn workspace practical-react-components-docs build",
"build:icons": "yarn workspace practical-react-components-icons build",
"build:ui-tests": "yarn workspace practical-react-components-ui-tests build",
"dev:libs": "yarn workspaces foreach --topological --no-private run dev",
"dev:icons": "yarn build:icons --watch",
"generate:types": "yarn workspaces foreach run tsc",
"lint": "yarn biome check . && yarn biome format .",
"lint:fix": "yarn biome check --apply . && yarn biome format --write .",
"commitlint": "sbin/commitlint.py",
"test": "jest",
"build": "yarn workspaces foreach --topological run build",
"release": "yarn --immutable --immutable-cache && yarn build:libs && yarn lint && yarn test && sbin/release.py",
"dev": "yarn workspaces foreach -i --parallel --exclude practical-react-components-ui-tests run dev",
"cypress:ui-tests": "yarn workspace practical-react-components-ui-tests dev",
"cypress:chrome": "yarn workspace practical-react-components-ui-tests wait-on http-get://localhost:9009 -i 2000 -d 5000 && yarn workspace practical-react-components-ui-tests cypress run --browser chrome --headless",
"cypress:firefox": "yarn workspace practical-react-components-ui-tests wait-on http-get://localhost:9009 -i 2000 -d 5000 && yarn workspace practical-react-components-ui-tests cypress run --browser firefox --headless"
},
"devDependencies": {
"@babel/cli": "7.19.3",
"@babel/core": "7.19.3",
"@babel/preset-env": "7.19.4",
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "7.18.6",
"@biomejs/biome": "1.2.2",
"@mdx-js/react": "2.1.5",
"@types/enzyme": "3.10.12",
"@types/enzyme-adapter-react-16": "1.0.6",
"@types/jest": "29.1.2",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"@types/styled-components": "5.1.26",
"babel-plugin-styled-components": "2.0.7",
"jest": "29.2.0",
"jest-environment-jsdom": "29.2.0",
"jest-styled-components": "7.1.1",
"pepjs": "0.5.3",
"postcss": "8.4.18",
"postcss-scss": "4.0.5",
"postcss-styled": "0.34.0",
"postcss-syntax": "0.36.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"semver": "7.3.8",
"typescript": "4.8.4",
"typescript-styled-plugin": "0.18.2"
},
"resolutions": {
"@types/react": "18.0.8",
"html-webpack-plugin": "5.5.0",
"loader-utils": "2.0.2"
},
"packageManager": "[email protected]"
}