-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.41 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
{
"name": "@primer-io/example-backend",
"type": "module",
"version": "1.0.0",
"private": true,
"author": "@primer-io",
"license": "MIT",
"scripts": {
"start": "concurrently npm:start:*",
"start:build": "npm run build -- --watch",
"start:server": "nodemon dist/server.js",
"prestart": "npm run build",
"build": "esbuild src/server.ts --bundle --format=esm --outfile=dist/server.js --packages=external --platform=node --target=esnext",
"lint": "concurrently npm:lint:*",
"lint:commit": "commitlint --from origin/main --to HEAD --verbose",
"lint:es": "eslint . --ignore-path .gitignore --report-unused-disable-directives --max-warnings 0",
"lint:prettier": "prettier . --check",
"lint:ts": "echo 'Ignored for now...'",
"format": "concurrently npm:format:*",
"format:es": "npm run lint:es --fix",
"format:prettier": "prettier . --write"
},
"engines": {
"node": "16.x"
},
"dependencies": {
"@fastify/cors": "^8.5.0",
"dotenv": "^16.3.1",
"fastify": "^4.24.3",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"concurrently": "^8.2.2",
"esbuild": "^0.19.5",
"nodemon": "^3.0.2",
"typescript": "^5.2.2",
"eslint": "^8.53.0",
"prettier": "^3.1.0",
"prettier-plugin-organize-imports": "^3.2.4"
}
}