This repository has been archived by the owner on Jan 8, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.94 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@codegouvfr/sill",
"version": "1.20.5",
"description": "The backend of code.gouv.fr/sill",
"repository": {
"type": "git",
"url": "git://github.com/codegouvfr/sill-api.git"
},
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"scripts": {
"prepare": "[ ! -f .env.local.sh ] && cp .env.sh .env.local.sh || true",
"test": "vitest",
"build": "tsc",
"start": "./.env.local.sh forever dist/main.js",
"_format": "prettier \"**/*.{ts,tsx,json,md}\"",
"format": "yarn run _format --write",
"format:check": "yarn run _format --list-different",
"link-in-web": "ts-node --skipProject scripts/link-in-app.ts sill-web",
"reset-data-test": "ts-node --skipProject scripts/reset-data-test.ts",
"compile-data": "./.env.local.sh ts-node --skipProject scripts/compile-data.ts",
"typecheck": "tsc --noEmit"
},
"lint-staged": {
"*.{ts,tsx,json,md}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged -v"
}
},
"author": "DINUM",
"license": "MIT",
"files": [
"src/",
"dist/",
"!dist/tsconfig.tsbuildinfo"
],
"keywords": [],
"homepage": "https://github.com/codegouvfr/sill-api",
"devDependencies": {
"@octokit/rest": "^18.12.0",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.12",
"@types/deepmerge": "^2.2.0",
"@types/express": "4.17.13",
"@types/memoizee": "^0.4.7",
"@types/node": "^16.4.9",
"@types/node-fetch": "^2.5.7",
"@types/semver": "^7.5.3",
"@types/ungap__structured-clone": "^0.3.0",
"@types/url-join": "^4.0.1",
"@ungap/structured-clone": "^0.3.4",
"async-mutex": "^0.4.0",
"cheerio": "^1.0.0-rc.12",
"comment-json": "^3.0.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"csv-parse": "^5.0.4",
"deepmerge": "^4.2.2",
"evt": "^2.5.7",
"express": "^4.17.2",
"forever": "^4.0.3",
"husky": "^4.3.8",
"i18nifty": "^3.2.0",
"jwt-simple": "^0.5.6",
"keycloak-backend": "^2.0.1",
"keycloakify": "^9.2.0",
"lint-staged": "^11.1.1",
"memoizee": "^0.4.15",
"node-fetch": "^2.6.7",
"prettier": "^2.8.2",
"redux-clean-architecture": "^4.1.0",
"run-exclusive": "^2.2.19",
"superjson": "^1.12.2",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"url-join": "^4.0.1",
"vitest": "^1.2.2"
},
"dependencies": {
"@octokit/graphql": "^7.0.2",
"@retorquere/bibtex-parser": "^7.0.11",
"@trpc/server": "^10.18.0",
"jwt-decode": "^3.1.2",
"semver": "^7.5.4",
"tsafe": "^1.6.6",
"zod": "^3.21.4"
},
"publishConfig": {
"access": "public"
}
}