-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
58 lines (58 loc) · 2.08 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
{
"name": "root",
"private": true,
"license": "SEE LICENSE IN LICENSE.md",
"scripts": {
"postinstall": "manypkg check && preconstruct dev",
"packages:build": "preconstruct build",
"start": "manypkg run @riftdweb/app start",
"build:app": "yarn packages:build && manypkg run @riftdweb/app build",
"build:bots": "yarn packages:build && manypkg run @riftdweb/bots build",
"format": "prettier --write './**/src/**/*.{ts,tsx}'",
"format:app": "prettier --write 'apps/app/src/**/*.{ts,tsx}'",
"format:core": "prettier --write 'packages/core/src/**/*.{ts,tsx}'",
"lint:core": "eslint 'packages/core/src/**/*.{ts,tsx}'",
"clean": "rimraf '**/node_modules' '**/yarn-error.log' '**/build' '**/dist'",
"fresh": "yarn clean && yarn",
"analyze": "source-map-explorer apps/app/build/static/js/*.js",
"release:core": "yarn packages:build && manypkg run @riftdweb/core publish",
"release:ds": "yarn packages:build && manypkg run @riftdweb/design-system publish",
"release:logger": "yarn packages:build && manypkg run @riftdweb/logger publish",
"release:types": "yarn packages:build && manypkg run @riftdweb/types publish",
"release:queue": "yarn packages:build && manypkg run @riftdweb/queue publish"
},
"workspaces": [
"packages/*",
"apps/*",
"services/*"
],
"dependencies": {
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@changesets/cli": "^2.16.0",
"@manypkg/cli": "^0.17.0",
"@preconstruct/cli": "^2.0.7",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"eslint": "^7.11.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^3.9.2",
"prettier": "^2.2.1",
"source-map-explorer": "^2.5.2"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"preconstruct": {
"packages": [
"packages/*"
]
}
}