-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.99 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.99 KB
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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"dependencies": {
"-": "^0.0.1",
"D": "^1.0.0",
"copyfiles": "^2.4.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-ui-components": "^1.1.2"
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@map-colonies/eslint-config": "^3.1.3",
"@map-colonies/prettier-config": "^0.0.1",
"@storybook/addon-essentials": "7.0.22",
"@storybook/addon-interactions": "7.0.22",
"@storybook/addon-knobs": "7.0.2",
"@storybook/addon-links": "7.0.22",
"@storybook/api": "7.0.0",
"@storybook/blocks": "7.0.22",
"@storybook/components": "7.0.0",
"@storybook/core-events": "7.0.0",
"@storybook/manager-api": "7.0.22",
"@storybook/react": "7.0.0",
"@storybook/react-vite": "7.0.22",
"@storybook/testing-library": "^0.0.14-next.2",
"@storybook/theming": "7.0.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.2",
"@types/node": "18.15.2",
"@types/react": "^18.0.37",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"@vitejs/plugin-react": "3.1.0",
"cross-env": "^7.0.3",
"eslint": "^8.38.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"eslint-plugin-storybook": "^0.6.12",
"husky": "^8.0.0",
"jest": "^29.5.0",
"lerna": "^7.0.2",
"lint-staged": "^13.2.2",
"prettier": "2.8.8",
"prop-types": "^15.8.1",
"rimraf": "^5.0.1",
"storybook": "7.0.22",
"storybook-addon-mock": "^4.0.0",
"ts-node": "10.9.1",
"vite": "4.1.4",
"vite-plugin-css-injected-by-js": "^3.2.0",
"vite-plugin-dts": "2.1.0",
"vite-plugin-eslint": "^1.8.1"
},
"scripts": {
"storybook:components": "lerna run --scope @map-colonies/react-components storybook --stream",
"build:components": "lerna run --scope @map-colonies/react-components build --stream",
"build:storybook-components": "lerna run --scope @map-colonies/react-components build-storybook --stream",
"test:components": "lerna run --scope @map-colonies/react-components test --stream",
"storybook:core": "lerna run --scope @map-colonies/react-core storybook --stream",
"build:core": "lerna run --scope @map-colonies/react-core build --stream",
"build:storybook-core": "lerna run --scope @map-colonies/react-core build-storybook --stream",
"test:core": "lerna run --scope @map-colonies/react-core test --stream",
"storybook:all": "npx lerna run storybook --parallel",
"build": "lerna run build --stream",
"release": "cross-env HUSKY=0 lerna publish",
"test": "NODE_ENV=test jest --coverage",
"lint": "eslint . --ext .ts,.tsx",
"prepare": "husky install",
"prettier:check": "prettier --check packages/**/*.{js,jsx,ts,tsx}",
"prettier:fix": "prettier --write packages/**/*.{js,jsx,ts,tsx}"
}
}