-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.83 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
{
"name": "@mat3ra/utils",
"version": "0.0.0",
"description": "Utils Py/JS",
"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 || exit 0",
"prettier": "prettier --check src/js tests/js",
"test": "nyc --reporter=text mocha --recursive --bail tests/js",
"transpile": "tsc -p tsconfig-transpile.json"
},
"author": "Exabyte Inc.",
"license": "ISC",
"main": "dist/js/index.js",
"exports": {
".": "./dist/js/index.js",
"./server": "./dist/js/index_server.js",
"./browser": "./dist/js/index_browser.js"
},
"files": [
"/dist/js",
"/src/js",
"tsconfig.json"
],
"dependencies": {
"@babel/cli": "7.16.0",
"@babel/core": "7.24.1",
"@babel/eslint-parser": "7.16.3",
"@babel/plugin-proposal-class-properties": "7.16.0",
"@babel/preset-env": "7.16.4",
"@babel/preset-react": "7.16.7",
"@babel/preset-typescript": "^7.22.5",
"@babel/register": "^7.16.0",
"@babel/runtime-corejs3": "7.16.8",
"ts-node": "^10.9.1",
"typescript": "^4.5.5",
"crypto-js": "^4.1.1",
"lodash": "^4.17.21",
"mathjs": "12.4.1",
"semver": "^7.5.3",
"underscore": "^1.13.3",
"underscore.string": "^3.3.4",
"uuid": "8.3.2"
},
"devDependencies": {
"@exabyte-io/eslint-config": "^2023.8.29-1",
"@mat3ra/tsconfig": "^2024.3.25-5",
"@types/chai": "^4.3.5",
"@types/lodash": "4.14.102",
"@types/mocha": "^10.0.1",
"@types/node": "^20.4.2",
"@types/crypto-js": "^4.1.1",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"babel-eslint": "^10.1.0",
"chai": "^4.3.4",
"eslint": "7.32.0",
"eslint-config-airbnb": "^19.0.2",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-exports": "^1.0.0-beta.2",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-jsdoc": "37.1.0",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-mui-path-imports": "0.0.15",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "7.30.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"mocha": "10.3.0",
"nyc": "^15.1.0",
"prettier": "^2.7.1"
},
"engines": {
"node": ">=14.0.0"
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --cache --fix",
"*.{js,ts,tsx,css}": "prettier --write"
}
}