-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 848 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 848 Bytes
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
{
"type": "module",
"scripts": {
"build": "tsc",
"clean": "rm -rf ./dist",
"start": "node dist/main.js | pino-pretty -c",
"scratch": "rm -rf ./dist && tsc && node dist/main.js | pino-pretty -c",
"watch": "tsc-watch --onSuccess \"node ./dist/main.js\" | pino-pretty -c",
"format": "prettier --write \"source/**/*.ts\""
},
"prettier": {
"trailingComma": "none",
"tabWidth": 4,
"semi": false,
"singleQuote": true
},
"dependencies": {
"@fastify/cors": "^8.1.0",
"axios": "^0.27.2",
"fastify": "^4.5.2",
"node-forge": "^1.3.1",
"ocsp": "^1.2.0",
"pino": "^8.4.1",
"pino-pretty": "^9.0.0",
"typescript": "^4.7.4"
},
"devDependencies": {
"@types/node": "^18.7.3"
}
}