-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.8 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.8 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
{
"name": "@lostsolution/optimistron",
"version": "0.0.1",
"author": "Edvin CANDON <edvin@lostsolution.io>",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js"
}
},
"peerDependencies": {
"@reduxjs/toolkit": "^2.11.2",
"redux": "^5.0.1"
},
"devDependencies": {
"@types/lodash": "^4.17.23",
"@types/react-dom": "^18.3.7",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"bun-types": "^1.3.9",
"clsx": "^2.1.1",
"eslint": "^8.57.1",
"formik": "^2.4.9",
"idb": "^8.0.3",
"imask": "^7.6.1",
"lodash": "^4.17.23",
"loglevel": "^1.9.2",
"mermaid": "^10.9.5",
"otpauth": "^9.5.0",
"papaparse": "^5.5.3",
"prettier": "^3.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-redux": "^9.2.0",
"react-router-dom": "^6.30.3",
"redux-saga": "^1.4.2",
"redux-thunk": "^3.1.0",
"serve": "^14.2.5",
"typescript": "^5.9.3"
},
"scripts": {
"typecheck": "tsc --noEmit",
"build:esm": "tsc -p tsconfig.esm.json",
"build:usecases": "bun build ./usecases/index.tsx --outdir ./usecases/dist --entry-naming [dir]/[name].[ext] --asset-naming [name].[ext] --target browser",
"serve:usecases": "bun serve ./usecases/",
"watch:usecases": "bun build:usecases --watch",
"format": "prettier --write 'src/**/*.ts' 'test/**/*.ts'",
"lint": "eslint 'src/**/*.ts' 'test/**/*.ts'",
"lint:fix": "eslint --fix 'src/**/*.ts' 'test/**/*.ts'"
}
}