forked from AxisCommunications/practical-react-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 3.71 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
85
86
87
88
89
{
"name": "practical-react-components",
"version": "1.16.0",
"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 lint:ts && yarn lint:css && yarn prettier:check",
"lint:fix": "yarn lint:ts --fix && yarn prettier:fix",
"lint:ts": "eslint --ext \".ts,.tsx\" . --cache",
"lint:css": "stylelint \"./**/*.tsx\"",
"commitlint": "sbin/commitlint.py",
"prettier:check": "prettier --check -u '**/*'",
"prettier:fix": "prettier --write -u '**/*'",
"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",
"@mdx-js/react": "2.1.5",
"@stylelint/postcss-css-in-js": "0.38.0",
"@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",
"@typescript-eslint/eslint-plugin": "5.40.0",
"@typescript-eslint/parser": "5.40.0",
"babel-plugin-styled-components": "2.0.7",
"eslint": "8.25.0",
"eslint-config-typescript-shareable": "1.9.0",
"eslint-plugin-cypress": "2.12.1",
"eslint-plugin-functional": "4.4.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-react": "7.31.10",
"eslint-plugin-react-hooks": "4.6.0",
"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",
"prettier": "2.7.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"semver": "7.3.8",
"stylelint": "14.14.0",
"stylelint-config-recommended": "9.0.0",
"stylelint-config-standard-scss": "5.0.0",
"stylelint-config-styled-components": "0.1.1",
"stylelint-processor-styled-components": "1.10.0",
"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]"
}