-
Notifications
You must be signed in to change notification settings - Fork 125
/
Copy pathpackage.json
113 lines (113 loc) · 3.43 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
{
"name": "cerebral-monorepo",
"private": true,
"version": "0.0.1",
"license": "MIT",
"scripts": {
"build": "repo-cooker --build",
"build:website": "cd packages/cerebral-website && npm run build",
"checkdeps": "repo-cooker --check-dependencies",
"commit": "git-cz",
"commit-msg": "cz-customizable-ghooks",
"coverage": "repo-cooker coverage",
"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\"",
"lint-staged": "lint-staged",
"postcoverage": "node scripts/coverage-combine.js",
"prepare": "husky install",
"pretest": "npm run checkdeps",
"release": "repo-cooker --release",
"test": "repo-cooker test --no-parallel && npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cerebral/cerebral.git"
},
"dependencies": {
"chokidar": "4.0.3",
"es6-error": "4.1.1",
"eventemitter3": "5.0.1",
"prop-types": "15.8.1",
"universal-websocket-client": "1.0.3"
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --fix",
"*.{md,css,json}": "prettier --write --with-node-modules"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": ".cz-config.js"
}
},
"devDependencies": {
"@angular/core": "6.1.10",
"@angular/platform-browser": "6.1.10",
"@angular/platform-browser-dynamic": "6.1.10",
"@babel/cli": "7.23.4",
"@babel/core": "7.23.9",
"@babel/node": "7.23.9",
"@babel/preset-env": "7.23.9",
"@babel/preset-react": "7.23.3",
"@babel/preset-typescript": "7.23.3",
"@babel/register": "7.23.7",
"@testing-library/dom": "10.4.0",
"@testing-library/react": "16.2.0",
"@types/mocha": "5.1.0",
"@types/node": "^22.13.5",
"@types/prop-types": "15.7.14",
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"assert": "1.4.1",
"babel-jest": "^29.7.0",
"babel-plugin-inferno": "^6.8.3",
"babel-preset-preact": "2.0.0",
"babel-watch": "7.8.1",
"commitizen": "^4.3.1",
"core-js-pure": "3.40.0",
"cross-env": "^7.0.3",
"cz-customizable": "^7.4.0",
"cz-customizable-ghooks": "^2.0.0",
"eslint": "^8.57.1",
"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",
"express": "4.21.2",
"fs-extra": "11.3.0",
"husky": "^8.0.3",
"inferno": "9.0.3",
"inferno-create-element": "9.0.3",
"jest": "^29.7.0",
"jsdom": "^26.0.0",
"lint-staged": "^15.4.3",
"marksy": "8.0.0",
"mocha": "^11.1.0",
"mock-socket": "6.0.4",
"npm-run-all": "4.1.5",
"nyc": "^17.1.0",
"preact": "10.26.4",
"prettier": "^3.5.2",
"prismjs": "1.29.0",
"raf": "3.4.1",
"react": "19.0.0",
"react-dom": "19.0.0",
"repo-cooker": "^8.0.22",
"string-template": "1.0.0",
"ts-node": "6.1.0",
"typescript": "4.9.5",
"vue": " 2.7.16",
"zone.js": "0.8.26"
}
}