forked from preconstruct/preconstruct
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.42 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
{
"name": "@preconstruct/monorepo",
"version": "0.0.65",
"description": "A smart build tool for libraries",
"scripts": {
"build": "yarn preconstruct build",
"test": "jest",
"preconstruct": "node ./build/node_modules/@preconstruct/cli/bin.js",
"postinstall": "manypkg check && cd build && yarn && cd .. && yarn preconstruct dev",
"changeset": "changeset",
"release": "yarn build && changeset publish",
"start:site": "cd site && yarn start",
"build:site": "cd site && yarn build",
"lint": "eslint . --ext tsx,ts,js"
},
"repository": "https://github.com/preconstruct/preconstruct",
"license": "MIT",
"workspaces": [
"packages/*",
"site"
],
"private": true,
"dependencies": {
"@babel/core": "^7.7.7",
"@babel/parser": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.7",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.7.7",
"@babel/preset-flow": "^7.10.4",
"@babel/preset-typescript": "^7.9.0",
"@changesets/changelog-github": "^0.4.1",
"@changesets/cli": "^2.17.0",
"@manypkg/cli": "^0.17.0",
"@types/babel__code-frame": "^7.0.1",
"@types/fs-extra": "^9.0.6",
"@types/inquirer": "^6.5.0",
"@types/jest": "^24.0.21",
"@types/meow": "^5.0.0",
"@types/ms": "^0.7.31",
"@types/node": "^12.12.5",
"@types/normalize-path": "^3.0.0",
"@types/npm-packlist": "^1.1.1",
"@types/parse-glob": "^3.0.29",
"@types/parse-json": "^4.0.0",
"@types/rollup-plugin-json": "^3.0.2",
"@types/source-map-support": "^0.5.0",
"@types/terser": "^3.12.0",
"@typescript-eslint/parser": "^5.4.0",
"babel-jest": "^24.9.0",
"babel-plugin-macros": "^2.8.0",
"codecov": "^3.6.1",
"cross-env": "^7.0.2",
"eslint": "^8.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"fixturez": "^1.1.0",
"jest": "^24.9.0",
"jest-in-case": "^1.0.2",
"jest-junit": "^9.0.0",
"lazy-require.macro": "^0.1.0",
"normalize-path": "^3.0.0",
"outdent": "^0.7.1",
"prettier": "^2.1.2",
"typescript": "^4.7.4"
},
"jest": {
"reporters": [
"default",
"jest-junit"
]
},
"manypkg": {
"defaultBranch": "main"
},
"preconstruct": {
"packages": [
"packages/*",
"!packages/next",
"!packages/hook"
]
}
}