-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.76 KB
/
package.json
File metadata and controls
66 lines (66 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
57
58
59
60
61
62
63
64
65
66
{
"name": "data",
"version": "0.1.0",
"private": true,
"dependencies": {
"@glenstack/cf-workers-fetch-helpers": "1.3.0",
"@glenstack/cf-workers-router": "1.0.1",
"axios": "^0.21.1",
"cheerio": "^1.0.0-rc.5",
"csv-parse": "4.15.1",
"csvtojson": "^2.0.10",
"mongodb": "^3.6.3",
"mongoose": "^5.11.15",
"node-fetch": "^2.6.1",
"pdfjs-dist": "^2.6.347",
"react": "^16.13.1",
"react-native": "^0.63.2",
"realm": "^10.2.0",
"request": "^2.88.2",
"utf8": "^3.0.0"
},
"scripts": {
"start": "wrangler dev",
"build": "wrangler build",
"lint": "eslint --ignore-path .gitignore --ext .js,.ts src/",
"check-types": "tsc",
"prettier": "prettier --ignore-path .gitignore \"**/*.+(js|ts|md)\"",
"format": "npm run prettier -- --write",
"check-format": "npm run prettier -- --list-different",
"validate": "concurrently \"npm:check-types\" \"npm:check-format\" \"npm:lint\" \"npm:build\""
},
"devDependencies": {
"@cloudflare/workers-types": "2.1.0",
"@cloudflare/wrangler": "^1.15.0",
"@typescript-eslint/eslint-plugin": "4.14.1",
"@typescript-eslint/parser": "4.14.1",
"bereich": "^1.0.0",
"concurrently": "5.3.0",
"eslint": "7.18.0",
"eslint-config-prettier": "7.2.0",
"husky": "4.3.8",
"lint-staged": "10.5.3",
"pdf-parse": "^1.1.1",
"pdfjs": "^2.4.2",
"prettier": "2.2.1",
"request-promise": "^4.2.6",
"ts-loader": "8.0.14",
"ts-node": "^9.1.1",
"tslint": "^5.12.1",
"typescript": "^4.1.3",
"webpack": "^5.22.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run check-types && lint-staged"
}
},
"lint-staged": {
".+(js|ts)": [
"eslint"
],
"**/*.+(js|ts|md)": [
"prettier --write"
]
}
}