-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
57 lines (57 loc) · 2.11 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
{
"name": "rediagram",
"version": "0.0.0",
"main": "index.js",
"license": "MIT",
"private": true,
"workspaces": [
"docker",
"website",
"packages/*",
"examples/*"
],
"scripts": {
"lerna": "lerna",
"test": "jest",
"prebuild": "lerna run --parallel clean",
"build": "yarn workspace @rediagram/common build && yarn workspace create-rediagram-project build && yarn workspace @rediagram/cdk build && yarn workspace @rediagram/cli build && yarn workspace rediagram build && yarn workspace @rediagram/aws build && yarn workspace @rediagram/gcp build && yarn workspace @rediagram/firebase build",
"prewatch": "yarn build",
"watch": "lerna run --parallel watch",
"rediagram": "yarn workspace @rediagram/cli start",
"lint": "eslint -c .eslintrc.json --ext ts,tsx packages examples",
"example:gallery": "yarn workspace @rediagram/gallery start",
"versionup": "lerna version --conventional-commits",
"versionup:patch": "lerna version patch --conventional-commits",
"versionup:minor": "lerna version minor --conventional-commits",
"versionup:major": "lerna version major --conventional-commits",
"prerelease": "yarn build",
"release": "lerna publish from-package",
"release:canary": "lerna publish --canary",
"postinstall": "lerna link"
},
"devDependencies": {
"@testing-library/react": "^11.0.2",
"@testing-library/react-hooks": "^7.0.1",
"@types/fs-extra": "^9.0.1",
"@types/jest": "^26.0.13",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"eslint": "^7.31.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"fs-extra": "^9.0.0",
"jest": "^27.0.6",
"lerna": "^4.0.0",
"prettier": "^2.3.2",
"react-test-renderer": "^16.13.1",
"ts-jest": "^27.0.4",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
}
}