-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.78 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
85
86
87
{
"name": "trpcroot",
"private": true,
"workspaces": {
"packages": [
"packages/*",
"examples/*",
"examples/.wip/*"
],
"nohoist": [
"**/@prisma",
"**/@prisma/**"
]
},
"preconstruct": {
"packages": [
"packages/*"
]
},
"prettier": {
"printWidth": 80,
"trailingComma": "all",
"singleQuote": true
},
"resolutions": {
"**/@typescript-eslint/eslint-plugin": "^4.11.1",
"**/@typescript-eslint/parser": "^4.11.1"
},
"scripts": {
"lerna": "lerna",
"start": "preconstruct watch",
"dev": "yarn start",
"test": "cd packages/server && yarn jest",
"lint": "eslint --ext \".js,.ts,.tsx\" --ignore-path .gitignore .",
"lint-fix": "yarn lint --fix && manypkg fix",
"postinstall": "preconstruct dev",
"build": "preconstruct build",
"test-dev-examples": "lerna exec --concurrency 1 --scope @examples/* --stream -- yarn test-dev",
"build-examples": "lerna run build --scope @examples/* --stream",
"test-examples": "lerna exec --concurrency 1 --scope @examples/* --stream -- yarn test-start",
"prepublish": "yarn build",
"example:express": "yarn --cwd examples/express-server dev",
"example:todomvc": "yarn --cwd examples/next-prisma-todomvc dev",
"example:chat": "yarn --cwd examples/next-chat dev",
"example:standalone": "yarn --cwd examples/standalone-server dev",
"changeset": "changeset",
"release": "changeset publish",
"version:canary": "changeset version --snapshot canary",
"release:canary": "changeset publish --tag canary"
},
"dependencies": {
"@babel/core": "^7.13.10",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.13.0",
"@changesets/changelog-github": "^0.4.0",
"@changesets/cli": "^2.13.1",
"@manypkg/cli": "^0.18.0",
"@preconstruct/cli": "^2.0.6",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.0.7",
"@types/jest": "^26.0.23",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"babel-plugin-annotate-pure-calls": "^0.4.0",
"babel-plugin-dev-expression": "^0.2.2",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"expect-type": "^0.11.0",
"jest": "^27.0.5",
"jsdom": "^16.5.1",
"lerna": "^4.0.0",
"playwright": "^1.8.0",
"prettier": "^2.3.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"ts-jest": "^27.0.3",
"typescript": "4.3.4"
}
}