-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.76 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.76 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
{
"name": "aesirx-lib",
"version": "2.3.2",
"license": "GPL-3.0-only",
"author": "AesirX",
"repository": "https://github.com/aesirxio/aesirx-lib",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"axios": "^1.7.4",
"axios-auth-refresh": "^3.3.6",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"moment": "^2.30.1",
"murmurhash-js": "^1.0.0",
"query-string": "7",
"react-secure-storage": "^1.3.2",
"ws": "^8.18.0"
},
"scripts": {
"lint": "cross-env NODE_ENV=production BABEL_ENV=production eslint --fix \"src/**/\"",
"lint:check": "cross-env NODE_ENV=production BABEL_ENV=production eslint \"src/**/\"",
"dev": "NODE_ENV=development NODE_OPTIONS=--max_old_space_size=4096 tsup --watch",
"build": "NODE_ENV=production NODE_OPTIONS=--max_old_space_size=8096 tsup",
"prepublishOnly": "yarn run build --dts",
"format:check": "prettier --check \"./src/**/*.{js,jsx,ts,tsx}\"",
"format:write": "prettier --write \"./src/**/*.{js,jsx,ts,tsx}\"",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.23",
"@babel/eslint-parser": "^7.25",
"@babel/plugin-proposal-class-properties": "^7.17",
"@babel/preset-env": "^7.23.9",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.23.3",
"@jest/globals": "^29.7.0",
"@types/crypto-js": "^4.1.1",
"@types/jest": "^29.5.13",
"@types/murmurhash-js": "^1.0.3",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"eslint": "^8.53",
"eslint-plugin-react": "^7.34",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.2.5",
"tsup": "^6.7.0",
"typescript": "^5.4.5"
},
"files": [
"dist"
]
}