-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.33 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
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
{
"name": "edge-cors-server",
"version": "0.1.0",
"private": true,
"description": "Fetch forwarding server",
"repository": "https://github.com/EdgeApp/edge-cors-server",
"license": "MIT",
"author": "Airbitz, Inc.",
"scripts": {
"build.lib": "sucrase -q -t typescript,imports,jsx -d ./lib ./src",
"build.types": "tsc",
"clean": "rimraf lib",
"fix": "npm run lint -- --fix",
"precommit": "lint-staged && npm run prepare",
"prepare": "husky install && npm-run-all clean -p build.*",
"start": "node -r sucrase/register src/indexCors.ts",
"lint": "eslint ."
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint"
},
"dependencies": {
"body-parser": "^1.19.0",
"cleaners": "^0.3.13",
"commander": "^6.1.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"csv-stringify": "^6.2.0",
"date-fns": "^2.16.1",
"date-fns-tz": "^1.1.4",
"express": "^4.17.3",
"express-promise-router": "^4.1.1",
"node-fetch": "^2.6.7",
"raw-body": "^2.5.2"
},
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/mocha": "^9.0.0",
"@types/node": "^14.0.22",
"@types/node-fetch": "^2.6.3",
"@types/raw-body": "^2.3.0",
"@types/react": "^16.9.22",
"@types/react-dom": "^16.9.5",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"assert": "^2.0.0",
"browserify-zlib": "^0.2.0",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"eslint-config-standard-kit": "0.15.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-simple-import-sort": "^6.0.1",
"events": "^3.3.0",
"https-browserify": "^1.0.0",
"husky": "^7.0.0",
"lint-staged": "^10.2.11",
"mocha": "^9.0.3",
"npm-run-all": "^4.1.5",
"parcel": "^2.8.2",
"path-browserify": "^1.0.1",
"prettier": "^3.0.3",
"process": "^0.11.10",
"querystring-es3": "^0.2.1",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"sucrase": "^3.20.0",
"typescript": "^4.1.2",
"url": "^0.11.0",
"util": "^0.12.4"
}
}