-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.66 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
{
"name": "@rb/monorepo",
"version": "0.1.0",
"description": "Main monorepo for all @rb apps and libs",
"private": true,
"workspaces": [
"packages/apps/*",
"packages/data/*",
"packages/docs",
"packages/libs/*"
],
"scripts": {
"build": "lerna run build",
"clean": "lerna run clean",
"docs": "lerna run --parallel --stream docs",
"docs:build": "lerna run docs:build",
"docs:prod": "lerna run docs:prod",
"lint": "eslint --ext js,ts,tsx .",
"lint:mdx": "eslint -c .eslintrc.js --ext mdx .",
"reset": "node scripts/dep-reset.js",
"next-dev": "lerna run --parallel --stream next-dev",
"start": "lerna run start",
"storybook": "lerna run --parallel --stream storybook",
"test": "lerna run test",
"lint:config": "eslint --print-config .eslintrc.js > outfile.json"
},
"dependencies": {
"change-case": "^4.1.2",
"rambda": "^6.7.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"styled-components": "^5.3.0",
"styled-system": "^5.1.5"
},
"devDependencies": {
"@babel/core": "7.14.2",
"@babel/node": "7.14.2",
"@babel/plugin-proposal-class-properties": "7.13.0",
"@babel/preset-env": "7.14.2",
"@babel/preset-react": "7.13.13",
"@babel/preset-typescript": "7.13.0",
"@babel/register": "^7.13.16",
"@types/fs-extra": "^9.0.11",
"@types/jest": "^26.0.23",
"@types/styled-components": "^5.1.9",
"@types/styled-system": "^5.1.11",
"chokidar": "^3.5.1",
"eslint-plugin-prettier": "^3.4.0",
"fs-extra": "^10.0.0",
"jest": "^26.6.3",
"lerna": "^3.22.1",
"ts-jest": "^26.5.5",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}