generated from Exabyte-io/template-definitions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 3.3 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
{
"name": "@mat3ra/code",
"version": "0.0.0",
"description": "COre DEfinitions",
"scripts": {
"lint": "eslint --cache src/js tests/js && prettier --write src/js tests/js",
"lint:fix": "eslint --fix --cache src/js tests/js && prettier --write src/js tests/js",
"lint:staged": "lint-staged",
"prepare": "husky install",
"prettier": "prettier --check src/js tests/js",
"test": "nyc --reporter=text mocha --recursive --bail tests/js",
"transpile": "tsc -p tsconfig-transpile.json"
},
"repository": {
"type": "git",
"url": "https://github.com/Exabyte-io/code.js.git"
},
"main": "./dist/js/index.js",
"files": [
"/dist",
"/src/js",
".babelrc",
"modules.d.ts",
"tsconfig.json"
],
"author": "Exabyte Inc.",
"bugs": {
"url": "https://github.com/Exabyte-io/code.js/issues"
},
"license": "Apache-2.0",
"homepage": "https://github.com/Exabyte-io/code.js",
"dependencies": {
"crypto-js": "^4.2.0",
"js-yaml": "^4.1.0",
"json-schema": "^0.4.0",
"lodash": "^4.17.*",
"mathjs": "^5.10.3",
"mixwith": "^0.1.1",
"nunjucks": "^3.2.4",
"react-jsonschema-form": "^1.8.1",
"semver": "^7.6.3",
"underscore": "^1.13.7",
"underscore.string": "^3.3.6",
"uuid": "8.3.2",
"@types/mathjs": "^5.0.1"
},
"devDependencies": {
"@babel/cli": "^7.25.7",
"@babel/core": "^7.25.7",
"@babel/eslint-parser": "^7.25.7",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.25.7",
"@babel/preset-react": "^7.25.7",
"@babel/preset-typescript": "^7.25.7",
"@babel/register": "^7.25.7",
"@babel/runtime-corejs3": "^7.25.7",
"@exabyte-io/eslint-config": "^2025.1.15-0",
"@mat3ra/esse": "2025.4.22-0",
"@mat3ra/tsconfig": "2024.6.3-0",
"@types/chai": "^4.3.20",
"@types/crypto-js": "^4.2.2",
"@types/js-yaml": "^4.0.9",
"@types/json-schema": "^7.0.15",
"@types/mocha": "^10.0.8",
"@types/node": "^20.16.10",
"@types/react-jsonschema-form": "^1.7.13",
"@types/underscore": "^1.11.15",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"chai": "^4.5.0",
"eslint": "7.32.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.10.0",
"eslint-import-resolver-exports": "^1.0.0-beta.5",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jsdoc": "^50.6.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-mui-path-imports": "^0.0.15",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.5.0",
"mocha": "10.7.3",
"nyc": "^15.1.0",
"prettier": "^2.8.8",
"ts-node": "^10.9.2",
"typescript": "^5.6.0"
},
"peerDependencies": {
"@mat3ra/esse": "*"
},
"engines": {
"node": ">=12.0.0"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css}": "prettier --write"
}
}