-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
77 lines (77 loc) · 2.33 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
69
70
71
72
73
74
75
76
77
{
"name": "@behave-graph/monorepo",
"version": "0.9.10",
"private": true,
"description": "Simple, extensible behavior graph engine",
"keywords": [
"behavior",
"graph",
"flow"
],
"homepage": "http://github.com/bhouston/behave-graph",
"bugs": {
"url": "https://github.com/bhouston/behave-graph/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/bhouston/behave-graph"
},
"license": "ISC",
"author": "behave-graph authors",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"build": "lerna run build",
"changeset:add": "changeset add",
"clean": "rm -rf node_modules packages/*/node_modules apps/*/node_modules packages/*/dist apps/*/dist",
"dev": "lerna run dev --parallel --stream",
"docs": "typedoc",
"format": "eslint \"{apps,packages}/*/src/**/*.{js,ts,tsx,json}\" --fix && prettier \"{apps,packages}/*/src/**/*.{js,ts,tsx,json}\" --check --write",
"release": "npm run build && npm run changeset publish",
"test": "jest",
"types": "lerna run types --parallel --stream",
"vers": "npm run changeset version"
},
"dependencies": {
"commander": "^9.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"source-map-support": "^0.5.21",
"vite": "^3.2.4"
},
"devDependencies": {
"@changesets/changelog-git": "^0.1.14",
"@changesets/cli": "^2.26.0",
"@types/jest": "^29.5.2",
"@types/node": "^18.0.6",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.43.0",
"@vitejs/plugin-react": "^4.0.3",
"autoprefixer": "^10.4.13",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^29.5.0",
"lerna": "^6.6.2",
"postcss": "^8.4.19",
"postcss-cli": "^10.1.0",
"prettier": "^2.8.8",
"tailwindcss": "^3.2.4",
"ts-jest": "^29.1.0",
"ts-jest-resolver": "^2.0.1",
"ts-node": "^10.9.1",
"typescript": "5.0.4",
"vite": "^4.4.3",
"vite-tsconfig-paths": "^4.2.0"
}
}