-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.53 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.53 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
{
"name": "@se-t4/api",
"version": "0.0.1",
"description": "API Server",
"main": "./dist/app.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "npm run build:ts && tsc -p test/tsconfig.json && tap --ts test/**/*.test.ts",
"start": "npm run build:ts && fastify start -a 0.0.0.0 -l info dist/app.js",
"build:ts": "tsc",
"dev": "tsc && concurrently -k -p \"[{name}]\" -n \"TypeScript,App\" -c \"yellow.bold,cyan.bold\" \"tsc -w\" \"fastify start --ignore-watch=.ts$ -w -l info -P dist/app.js\"",
"format": "prettier --write \"**/*.+(js|jsx|json|css|md|ts|tsx)\"",
"lint": "eslint \"**/*.+(js|jsx|json|css|md|ts|tsx)\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/autoload": "^5.0.0",
"@fastify/cors": "^8.1.0",
"@fastify/redis": "5.0.0",
"@fastify/sensible": "^5.0.0",
"@fastify/static": "^6.5.0",
"@fastify/swagger": "^7.4.1",
"@se-t4/database": "0.0.1",
"axios": "^0.27.2",
"fastify": "^4.0.0",
"fastify-cli": "^4.0.1",
"fastify-multer": "^2.0.3",
"fastify-plugin": "^4.0.0",
"lerna": "^5.3.0",
"moment": "^2.30.1",
"slugify": "^1.6.5",
"typedi": "^0.10.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^17.0.8",
"@types/tap": "^15.0.5",
"concurrently": "^7.0.0",
"fastify-tsconfig": "^1.0.1",
"jsonwebtoken": "^8.5.1",
"nodemon": "^2.0.15",
"tap": "^16.1.0",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
}
}