-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
79 lines (79 loc) · 2.46 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
{
"name": "edge-logs-server",
"version": "0.1.0",
"private": false,
"description": "Logging Tool",
"repository": "https://github.com/EdgeApp/edge-logs-server",
"license": "MIT",
"author": "Airbitz, Inc.",
"source": "src/client/index.html",
"scripts": {
"build.lib": "sucrase -q -t typescript,imports,jsx -d ./lib ./src",
"build.types": "tsc",
"build.dist": "parcel build",
"clean": "rimraf lib dist",
"fix": "npm run lint -- --fix",
"fio:promo": "node -r sucrase/register src/bin/fioPromo/fioPromo.ts",
"precommit": "lint-staged && npm run prepare",
"prepare": "npm-run-all clean -p build.*",
"start": "node -r sucrase/register src/indexApi.ts",
"test": "mocha -r sucrase/register 'test/**/*.test.ts'",
"demo": "parcel serve src/client/index.html",
"lint": "eslint --ext .js,.jsx,.ts,.tsx ."
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint"
},
"dependencies": {
"@types/express": "^4.17.17",
"bip39": "^3.1.0",
"cleaner-config": "^0.1.9",
"cleaners": "^0.3.13",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"edge-server-tools": "^0.2.18",
"express": "^4.18.2",
"luxon": "^3.2.1",
"nano": "^10.1.2",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-cookie": "^4.0.3",
"react-data-table-component": "^7.5.3",
"react-datepicker": "^4.10.0",
"react-dom": "^18.2.0",
"react-json-view": "^1.21.3",
"react-loader-spinner": "^5.3.4",
"react-router-dom": "^5.3.4",
"react-timezone-select": "^1.4.0",
"styled-components": "^5.3.6",
"yarn": "^1.22.19"
},
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/mocha": "^10.0.1",
"@types/node": "^18.14.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"chai": "^4.3.4",
"eslint": "^8.34.0",
"eslint-config-standard-kit": "^0.15.1",
"eslint-plugin-import": ">=2.18.0",
"eslint-plugin-node": ">=9.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": ">=4.2.1",
"eslint-plugin-react": ">=7.14.2",
"eslint-plugin-simple-import-sort": ">=4.0.0",
"eslint-plugin-standard": ">=4.0.0",
"husky": ">=3.0.0",
"lint-staged": ">=13.1.2",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"parcel": "^2.8.3",
"prettier": "^2.8.4",
"process": "^0.11.10",
"sucrase": "^3.20.0",
"typescript": "^4.9.5"
}
}