-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
41 lines (41 loc) · 1.24 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
{
"name": "motion-canvas",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"prepare": "husky install",
"template:serve": "npm run serve -w packages/template",
"ffmpeg:build": "npm run build -w packages/ffmpeg",
"ffmpeg:client:dev": "npm run client:dev -w packages/ffmpeg",
"ffmpeg:server:dev": "npm run server:dev -w packages/ffmpeg",
"eslint": "eslint \"**/*.ts?(x)\"",
"eslint:fix": "eslint --fix \"**/*.ts?(x)\"",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write ."
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@motion-canvas/2d": "^3.7.0",
"@motion-canvas/core": "^3.7.0",
"@motion-canvas/ui": "^3.7.0",
"@motion-canvas/vite-plugin": "^3.7.0",
"@types/node": "^18.14.0",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.34.0",
"eslint-plugin-tsdoc": "^0.2.17",
"husky": "^8.0.0",
"lerna": "^5.3.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"typescript": "^4.9.5",
"vite": "^4.1.4"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --fix",
"*.{js,jsx,ts,tsx,md,scss}": "prettier --write"
}
}