forked from trycourier/courier-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 3.19 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
{
"name": "courier-react",
"version": "0.1.9",
"description": "",
"main": "index.js",
"private": true,
"scripts": {
"lerna": "lerna",
"lerna:version": "lerna version --no-push --no-git-tag-version",
"lerna:publish": "lerna publish from-package --yes --no-verify-access",
"postinstall": "lerna bootstrap && yarn build",
"build": "lerna run build --stream && yarn types",
"build:components": "lerna run build:components --stream",
"analyze:components": "yarn run build && ANALYZE=true lerna run build:components --scope @trycourier/components --stream",
"build:watch": "lerna run build:watch --stream --parallel",
"clean": "lerna run clean --stream && lerna clean --yes && rimraf node_modules",
"eslint": "eslint './packages/**/*.{ts,tsx}' --fix",
"export:storybook": "lerna run build && lerna run export:storybook",
"prettier": "prettier --write \"packages/**/*{js,json,ts,tsx}\"",
"test": "NODE_ENV=test jest --verbose",
"start:components": "lerna run build:watch --stream --parallel & yarn types & lerna run start:components --stream",
"start": "lerna run build:watch --stream --parallel & yarn types & lerna run storybook --stream",
"types": "lerna run types",
"type-check": "lerna run type-check --parallel --stream",
"type-coverage:detail": "type-coverage --strict --detail",
"type-coverage": "type-coverage --strict --at-least 92"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trycourier/courier-react.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/trycourier/courier-react/issues"
},
"homepage": "https://github.com/trycourier/courier-react#readme",
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.13.1",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.13.9",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.3",
"@types/jest": "^26.0.20",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.14.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-inline-import": "^3.0.0",
"babel-plugin-inline-react-svg": "^2.0.1",
"babel-plugin-react-remove-properties": "^0.3.0",
"babel-plugin-root-import": "^6.6.0",
"babel-plugin-styled-components": "^1.12.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"eslint": "^7.18.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^22.11.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.2",
"fetch-mock": "^9.11.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"jest-styled-components": "^7.0.3",
"lerna": "^4.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.17",
"typescript": "^4.1.3"
},
"workspaces": {
"packages": [
"packages/*"
]
}
}