forked from motion-canvas/motion-canvas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.92 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
{
"name": "motion-canvas",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"prepare": "husky install",
"core:build": "npm run build -w packages/core",
"core:watch": "npm run watch -w packages/core",
"core:test": "npm run test -w packages/core",
"2d:build": "npm run build -w packages/2d",
"2d:watch": "npm run watch -w packages/2d",
"ui:build": "npm run build -w packages/ui",
"ui:serve": "npm run dev -w packages/ui",
"ui:showcase": "npm run showcase -w packages/ui",
"ui:type": "npm run type -w packages/ui",
"template:serve": "npm run serve -w packages/template",
"template:build": "npm run build -w packages/template",
"examples:serve": "npm run serve -w packages/examples",
"examples:build": "npm run build -w packages/examples",
"player:serve": "npm run serve -w packages/player",
"player:build": "npm run build -w packages/player",
"docs:start": "npm run start -w packages/docs",
"docs:build": "npm run build -w packages/docs",
"docs:blog": "npm run blog -w packages/docs",
"vite-plugin:build": "npm run build -w packages/vite-plugin",
"vite-plugin:watch": "npm run watch -w packages/vite-plugin",
"e2e:test": "npm run test -w packages/e2e",
"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",
"@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": "^3.2.5"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --fix",
"*.{js,jsx,ts,tsx,md,scss}": "prettier --write"
}
}