-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.43 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.43 KB
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
{
"name": "@magical-forms/monorepo",
"private": true,
"version": "0.0.1",
"license": "MIT",
"scripts": {
"postinstall": "preconstruct dev",
"changeset": "changeset",
"release": "preconstruct build && changeset publish",
"start": "cd test-app && yarn next dev",
"test": "jest"
},
"preconstruct": {
"packages": [
"packages/*"
],
"distFilenameStrategy": "unscoped-package-name"
},
"workspaces": [
"packages/*",
"test-app"
],
"resolutions": {
"**/@babel/parser": "7.9.4"
},
"dependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.10.4",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@changesets/changelog-github": "^0.4.2",
"@changesets/cli": "^2.20.0",
"@emotion/core": "^10.0.22",
"@manypkg/cli": "^0.19.1",
"@preconstruct/cli": "^2.1.5",
"@testing-library/react": "^10.3.0",
"@types/babel__core": "^7.1.2",
"@types/jest": "^24.0.15",
"@types/react": "^16.8.23",
"@types/react-dom": "^16.8.4",
"babel-jest": "^24.8.0",
"babel-plugin-macros": "^2.8.0",
"jest": "^24.8.0",
"jest-emotion": "^10.0.17",
"jest-in-case": "^1.0.2",
"prettier": "^2.0.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"typescript": "^4.5.2"
}
}