-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
68 lines (68 loc) · 2.36 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
{
"name": "@dotlottie/dotlottie-js",
"repository": "https://github.com/dotlottie/dotlottie-js.git",
"homepage": "https://github.com/dotlottie/dotlottie-js#readme",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"keywords": [
"dotLottie",
"Lottie",
"LottieFiles"
],
"scripts": {
"build": "turbo run build",
"changelog": "changeset add",
"changelog:check": "changeset status --since=main",
"clean": "node scripts/remove-dev.mjs && turbo run clean",
"deps:sync": "syncpack list-mismatches --dev --prod",
"deps:updates": "ncu --deep",
"deps:upgrade": "ncu --deep --format repo -i --removeRange",
"dev": "turbo run dev --parallel",
"docs:readme": "remark ./**/README.md --output --ignore-path ./.remarkignore --silently-ignore",
"format": "pnpm run format:prettier",
"format:prettier": "prettier --loglevel=warn --no-editorconfig --write .",
"format:remark": "remark . --output --ignore-path .remarkignore --silently-ignore",
"lint": "eslint .",
"lint:prod": "cross-env NODE_ENV=production eslint --fix .",
"preinstall": "npx only-allow pnpm",
"prepare": "husky install",
"release": "pnpm release:version && pnpm release:publish",
"release:publish": "pnpm clean && pnpm build && changeset publish",
"release:version": "changeset version",
"renderers:update-releases": "turbo run update-releases",
"size-check": "size-limit",
"stats:eslint": "pnpm run stats:eslint",
"stats:ts": "pnpm run stats:ts",
"test": "turbo run test",
"test:coverage": "turbo run test:coverage",
"type-check": "turbo run type-check"
},
"devDependencies": {
"@changesets/cli": "2.23.2",
"@commitlint/cli": "17.0.3",
"@lottiefiles/commitlint-config": "2.0.0",
"@lottiefiles/eslint-plugin": "3.0.0",
"@lottiefiles/prettier-config": "3.0.0",
"@lottiefiles/remark-preset": "1.0.0",
"@lottiefiles/tsconfig": "2.0.0",
"@size-limit/preset-big-lib": "^8.2.6",
"clinic": "11.1.2",
"cross-env": "7.0.3",
"esbuild": "0.14.49",
"eslint": "7.32.0",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"npm-check-updates": "15.3.4",
"prettier": "2.7.1",
"remark-cli": "11.0.0",
"size-limit": "^8.2.6",
"syncpack": "8.2.4",
"turbo": "1.3.4",
"typescript": "4.7.4",
"zx": "7.0.7"
},
"packageManager": "pnpm@8.8.0"
}