-
Notifications
You must be signed in to change notification settings - Fork 109
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.42 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.42 KB
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
{
"name": "github-integration-workflow",
"description": "A workflow for integrating GitHub with Motia",
"scripts": {
"postinstall": "motia install",
"dev": "motia dev",
"dev:debug": "motia dev --verbose",
"generate-types": "motia generate-types",
"build": "motia build",
"clean": "rm -rf dist node_modules python_modules .motia .mermaid",
"test": "NODE_ENV=test jest",
"test:watch": "NODE_ENV=test jest --watch",
"test:coverage": "NODE_ENV=test jest --coverage",
"test:coverage:report": "NODE_ENV=test jest --coverage && open coverage/lcov-report/index.html",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\""
},
"keywords": [
"motia"
],
"dependencies": {
"@octokit/rest": "^21.1.1",
"dotenv": "^16.5.0",
"express": "^4.21.2",
"motia": "^0.5.5-beta.113",
"openai": "^5.7.0",
"react": "^19.0.0",
"zod": "^3.25.67"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/react": "^18.3.23",
"jest": "^29.7.0",
"ts-jest": "^29.3.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"dotenv": "^16.5.0"
}
}