forked from motiondivision/motionone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.18 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
{
"name": "motionone-monorepo",
"version": "0.0.0",
"private": true,
"workspaces": {
"packages": [
"playgrounds/*",
"packages/*"
]
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"test": "turbo run test",
"measure": "turbo run measure",
"format": "prettier --write '**/*.{ts,tsx,.md}'",
"new-prepare": "turbo run build test measure lint",
"new": "npm run new-prepare && lerna publish from-package",
"new-alpha": "npm run new-prepare && lerna publish from-package --canary --preid alpha",
"new-beta": "npm run new-prepare && lerna publish from-package --canary --preid beta",
"deploy": "turbo run build test measure lint deploy"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-replace": "^3.0.0",
"@types/jest": "^27.0.3",
"bundlesize": "^0.18.1",
"concurrently": "^7.3.0",
"jest": "^27.4.4",
"lerna": "^4.0.0",
"prettier": "^2.5.1",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^27.1.1",
"turbo": "^1.1.4",
"typescript": "^4.6.3",
"webpack-cli": "^4.9.1"
},
"packageManager": "[email protected]"
}