-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.18 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
{
"name": "timestamp",
"version": "1.0.1",
"description": "timestamp api service",
"private": true,
"keywords": [
"node",
"api",
"fastify",
"docker"
],
"author": "Fabrizio A. Vitale",
"license": "MIT",
"engines": {
"node": "^14.0.0",
"npm": "^6.14.4"
},
"scripts": {
"prebuild": "rimraf ./dist",
"build": "tsc -p ./tsconfig.build.json",
"build:dev": "tsc",
"checkversions": "node ./scripts/checkversions.cjs",
"start:dev": "cross-env NODE_ENV=development node ./dist/server.js",
"start:dev:debug": "cross-env NODE_ENV=development node --inspect ./dist/server.js",
"predev": "npm run checkversions",
"dev": "nodemon --exec run-s build:dev start:dev",
"predev:debug": "npm run checkversions",
"dev:debug": "nodemon --exec run-s build:dev start:dev:debug",
"prestart": "npm run checkversions",
"prettify": "prettier --write",
"start": "cross-env NODE_ENV=production node ./dist/server.js",
"lint:ts": "tsc -p ./tsconfig.test.json",
"lint:eslint:fix": "eslint --fix",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@types/jest": "^26.0.15",
"@types/lodash": "^4.14.165",
"@types/node": "^14.14.7",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"babel-jest": "^26.6.3",
"eslint": "^7.13.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"nodemon": "^2.0.6",
"prettier": "2.0.5",
"rimraf": "^3.0.2",
"typescript": "4.1.3"
},
"dependencies": {
"@sinclair/typebox": "^0.12.3",
"ajv-errors": "^1.0.1",
"check-node-version": "^4.0.3",
"cross-env": "^7.0.3",
"fastify": "^3.9.0",
"fastify-accepts-serializer": "^3.2.0",
"fastify-compress": "^3.4.0",
"fastify-cors": "^4.1.0",
"fastify-etag": "^1.0.0",
"fastify-swagger": "^3.5.0",
"lodash": "^4.17.20",
"npm-run-all": "^4.1.5",
"tiny-invariant": "^1.1.0",
"utility-types": "^3.10.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}