-
-
Notifications
You must be signed in to change notification settings - Fork 95
/
package.json
116 lines (116 loc) · 3.47 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.8.1",
"graphql-request": "5.1.0",
"graphql-tag": "2.12.6",
"is-plain-obj": "3.0.0",
"lodash.clonedeep": "4.5.0",
"phoenix": "1.7.7",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "3.5.0",
"split-pane-react": "0.1.3",
"svelte": "3.59.2",
"tslib": "2.6.2",
"vue": "3.3.4",
"ws": "8.14.2"
},
"devDependencies": {
"@babel/core": "7.23.0",
"@babel/node": "7.22.19",
"@babel/plugin-transform-class-properties": "7.22.5",
"@babel/plugin-transform-object-rest-spread": "7.22.15",
"@babel/plugin-transform-react-jsx": "7.22.15",
"@babel/plugin-transform-runtime": "7.22.15",
"@babel/preset-env": "7.22.20",
"@babel/preset-react": "7.22.15",
"@babel/preset-typescript": "7.23.0",
"@size-limit/file": "8.2.6",
"@testing-library/jest-dom": "6.1.3",
"@testing-library/react": "14.0.0",
"@testing-library/svelte": "3.2.2",
"@types/jest": "29.5.5",
"@types/node": "20.8.3",
"@types/phoenix": "1.6.2",
"@types/react": "18.2.25",
"@types/react-dom": "18.2.11",
"@types/vscode": "1.70.0",
"@types/ws": "8.5.6",
"@typescript-eslint/eslint-plugin": "6.7.4",
"@typescript-eslint/parser": "6.7.4",
"babel-loader": "9.1.3",
"commitizen": "4.3.0",
"cz-customizable": "7.0.0",
"cz-customizable-ghooks": "2.0.0",
"eslint": "8.51.0",
"eslint-config-prettier": "9.0.0",
"eslint-config-standard": "17.1.0",
"eslint-config-standard-jsx": "11.0.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-standard": "4.1.0",
"html-webpack-plugin": "5.5.3",
"husky": "8.0.3",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"lint-staged": "14.0.1",
"prettier": "3.0.3",
"repo-cooker": "8.0.21",
"rimraf": "5.0.5",
"size-limit": "8.2.6",
"svelte-jester": "2.3.2",
"terser-webpack-plugin": "5.3.9",
"ts-jest": "29.1.1",
"ts-loader": "9.4.4",
"typescript": "5.2.2",
"url-loader": "4.1.1",
"webpack": "5.88.2",
"webpack-cli": "5.1.4",
"webpack-dev-server": "4.15.1",
"webpack-merge": "5.9.0"
},
"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"
}
}
}