-
-
Notifications
You must be signed in to change notification settings - Fork 97
/
Copy pathpackage.json
116 lines (116 loc) · 3.46 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "overmind-monorepo",
"private": true,
"version": "1.0.0",
"license": "MIT",
"scripts": {
"build": "repo-cooker --build",
"checkdeps": "repo-cooker --check-dependencies",
"commit": "git-cz",
"commit-msg": "cz-customizable-ghooks",
"fixdeps": "repo-cooker --fix-dependencies",
"format": "npm run lint -- --fix && prettier --write \"**/*.md\" \"**/*.json\"",
"install": "npm run link && npm run build",
"link": "repo-cooker --link",
"lint": "eslint \"**/*.js\" \"**/*.ts?\"",
"lint-staged": "lint-staged",
"prepare": "husky install",
"release": "repo-cooker --release",
"test": "repo-cooker test --no-parallel"
},
"heroku-run-build-script": false,
"repository": {
"type": "git",
"url": "git+https://github.com/cerebral/overmind.git"
},
"dependencies": {
"@absinthe/socket": "0.2.1",
"color-hash": "2.0.2",
"electron": "26.3.0",
"electron-json-storage": "4.6.0",
"emotion": "9.2.12",
"graphql": "16.10.0",
"graphql-request": "5.1.0",
"graphql-tag": "2.12.6",
"is-plain-obj": "3.0.0",
"lodash.clonedeep": "4.5.0",
"phoenix": "1.7.19",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-icons": "3.5.0",
"split-pane-react": "0.1.3",
"svelte": "3.59.2",
"tslib": "2.8.1",
"vue": "3.5.13",
"ws": "8.18.1"
},
"devDependencies": {
"@babel/core": "7.26.9",
"@babel/node": "7.26.0",
"@babel/plugin-transform-class-properties": "7.25.9",
"@babel/plugin-transform-object-rest-spread": "7.25.9",
"@babel/plugin-transform-react-jsx": "7.25.9",
"@babel/plugin-transform-runtime": "7.26.9",
"@babel/preset-env": "7.26.9",
"@babel/preset-react": "7.26.3",
"@babel/preset-typescript": "7.26.0",
"@size-limit/file": "11.1.6",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "15.0.7",
"@testing-library/svelte": "3.2.2",
"@types/jest": "29.5.14",
"@types/node": "20.8.3",
"@types/phoenix": "1.6.6",
"@types/react": "18.3.18",
"@types/react-dom": "18.3.5",
"@types/vscode": "1.70.0",
"@types/ws": "8.5.14",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"babel-loader": "9.2.1",
"commitizen": "4.3.1",
"concurrently": "^9.1.2",
"cz-customizable": "7.4.0",
"cz-customizable-ghooks": "2.0.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard": "17.1.0",
"eslint-config-standard-jsx": "11.0.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "5.2.3",
"eslint-plugin-promise": "6.6.0",
"eslint-plugin-react": "7.37.4",
"html-webpack-plugin": "5.6.3",
"husky": "8.0.3",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"lint-staged": "15.4.3",
"prettier": "3.5.3",
"repo-cooker": "8.0.22",
"rimraf": "5.0.5",
"size-limit": "11.1.6",
"svelte-jester": "2.3.2",
"terser-webpack-plugin": "5.3.11",
"ts-jest": "29.2.5",
"ts-loader": "9.5.2",
"typescript": "5.5.4",
"url-loader": "4.1.1",
"webpack": "5.98.0",
"webpack-cli": "5.1.4",
"webpack-dev-server": "5.2.0",
"webpack-merge": "6.0.1"
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --fix",
"*.{md,css,json}": "prettier --write"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": ".cz-config.js"
}
}
}