This repository has been archived by the owner on Oct 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.84 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
{
"name": "unicore",
"description": "Standard batteries-included Ackee suit for an API Core.",
"version": "0.6.1",
"author": "Jiří Šmolík <[email protected]>",
"contributors": [
"Jaroslav Šmolík <[email protected]>"
],
"main": "./dist/main.js",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/AckeeCZ/unicore"
},
"license": "MIT",
"keywords": [],
"scripts": {
"build": "tsc",
"test": "cross-env NODE_PATH=src jest",
"test:coverage": "npm run test -- --collectCoverage",
"lint": "eslint '**/*.ts' -f codeframe",
"cs:prettier:check": "prettier --check '**/*.{ts,js,json,md}'",
"cs:prettier:fix": "npm run cs:prettier:check -- --write '**/*.{ts,js,json,md}'",
"cs:eslint:check": "eslint '**/*.ts' -f codeframe",
"cs:eslint:fix": "npm run cs:eslint:check -- --fix",
"pretty": "prettier --write \"src/**/*.ts\"",
"prepare": "npm run build",
"docs": "typedoc --options typedoc.json src/lib/*.ts",
"check": "npm-check -i app -i errors -i config -i index & exit 0"
},
"dependencies": {
"@google-cloud/storage": "^5.14.0",
"@types/cors": "^2.8.12",
"@types/multer": "^1.4.7",
"@types/server-destroy": "^1.0.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"multer": "^1.4.4-lts.1",
"server-destroy": "^1.0.1"
},
"devDependencies": {
"@ackee/styleguide-backend-config": "^0.3.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.1",
"@types/supertest": "^2.0.11",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"got": "^11.8.2",
"husky": "^7.0.2",
"jest": "^27.1.0",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"supertest": "^6.1.6",
"ts-jest": "^27.0.5",
"typedoc": "^0.21.9",
"typescript": "^4.4.2"
}
}