forked from cerebral/overmind
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 3.54 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 3.54 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
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
117
118
119
120
121
122
123
124
125
{
"name": "overmind-monorepo",
"private": true,
"version": "1.0.0",
"license": "MIT",
"scripts": {
"build": "repo-cooker --build",
"checkdeps": "repo-cooker --check-dependencies",
"commit": "git-cz",
"commitmsg": "cz-customizable-ghooks",
"fixdeps": "repo-cooker --fix-dependencies",
"format": "npm run lint -- --fix && prettier --write --with-node-modules \"**/*.md\" \"**/*.css\" \"**/*.json\"",
"install": "npm run link && npm run build",
"link": "repo-cooker --link",
"lint": "eslint \"**/*.js\" \"**/*.ts\"",
"precommit": "lint-staged",
"release": "repo-cooker --release",
"test": "repo-cooker test --no-parallel"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cerebral/overmind.git"
},
"dependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.0",
"@types/node": "10.5.1",
"color": "3.0.0",
"color-hash": "1.0.3",
"electron": "2.0.8",
"electron-json-storage": "4.1.0",
"emotion": "9.2.12",
"express": "4.16.3",
"install": "0.12.1",
"is-plain-obj": "1.1.0",
"marksy": "6.1.0",
"npm": "6.3.0",
"page": "1.8.6",
"petit-dom": "0.2.2",
"preact": "8.3.1",
"preact-compat": "3.18.4",
"prismjs": "1.15.0",
"query-string": "6.2.0",
"react-hot-loader": "^4.3.4",
"styled-components": "3.3.3",
"tslib": "1.9.3",
"vue": "2.5.16",
"vue-hot-reload-api": "2.3.0",
"vue-styled-components": "1.3.0",
"ws": "5.2.1",
"react": "16.8.1",
"react-dom": "16.8.1"
},
"devDependencies": {
"@babel/core": "7.2.2",
"@babel/plugin-transform-react-jsx": "7.1.6",
"@babel/preset-react": "7.0.0",
"@babel/preset-typescript": "7.1.0",
"@types/jest": "23.1.4",
"@types/react": "16.7.13",
"@types/react-dom": "16.0.6",
"@vue/component-compiler-utils": "2.1.0",
"babel-loader": "8.0.0-beta.4",
"babel-plugin-transform-vue-jsx": "3.7.0",
"commitizen": "^2.10.1",
"concurrently": "3.6.1",
"cz-customizable": "^5.2.0",
"cz-customizable-ghooks": "^1.5.0",
"eslint": "^5.8.0",
"eslint-config-prettier": "^3.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-jsx": "^6.0.2",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-typescript": "^0.14.0",
"html-webpack-plugin": "3.2.0",
"husky": "^0.14.3",
"jest": "23.5.0",
"jsdom": "11.12.0",
"lint-staged": "^7.2.0",
"parcel-bundler": "1.11.0",
"prettier": "1.15.2",
"raw-loader": "0.5.1",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"react-test-renderer": "^16.8.1",
"repo-cooker": "^6.3.0",
"rimraf": "2.6.2",
"source-map-loader": "0.2.4",
"terser-webpack-plugin": "1.2.1",
"ts-jest": "23.10.4",
"ts-loader": "4.4.2",
"tslib": "1.9.3",
"typescript": "3.3.1",
"typescript-eslint-parser": "^21.0.1",
"url-loader": "1.0.1",
"vue": "2.5.16",
"vue-template-compiler": "2.5.16",
"webpack": "4.28.4",
"webpack-cli": "3.1.2",
"webpack-dev-server": "3.1.11"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix",
"git add"
],
"*.{md,css,json}": [
"prettier --write --with-node-modules",
"git add"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": ".cz-config.js"
}
}
}