-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 918 Bytes
/
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
{
"name": "controlfreak-monorepo",
"private": true,
"version": "0.2.0",
"license": "MIT",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"postinstall": "preconstruct dev && manypkg check",
"dev": "preconstruct dev",
"demo": "yarn preconstruct dev && cd apps/demo && yarn dev",
"build": "preconstruct build",
"test": "jest",
"ci": "preconstruct validate && manypkg check && yarn build && yarn test",
"release": "yarn ci && yarn changeset publish"
},
"preconstruct": {
"packages": [
"packages/*"
]
},
"prettier": {
"trailingComma": "none",
"tabWidth": 2,
"useTabs": false,
"semi": false,
"singleQuote": false,
"arrowParens": "always",
"printWidth": 80
},
"dependencies": {
"@babel/core": "^7.17.9",
"@changesets/cli": "^2.22.0",
"@manypkg/cli": "^0.19.1",
"@preconstruct/cli": "^2.1.5"
}
}