-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.45 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.45 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
{
"name": "declarative-api",
"version": "0.0.0",
"description": "",
"main": "dist/server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc -p tsconfig.json",
"start": "node dist/server.js",
"generate:schemas": "npx ts-node src/generateSchemas.ts",
"generate:entities": "cross-env NODE_PATH=src TS_NODE_FILES=true npx ts-node src/generateEntities.ts",
"dev": "cross-env NODE_PATH=src TS_NODE_FILES=true nodemon src/server.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andersakerberg/declarative-api.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/andersakerberg/declarative-api/issues"
},
"homepage": "https://github.com/andersakerberg/declarative-api#readme",
"dependencies": {
"@types/faker": "^5.1.7",
"app-module-path": "^2.2.0",
"cross-env": "^7.0.3",
"dotenv": "^8.2.0",
"faker": "^5.4.0",
"fastify": "^3.14.0",
"fastify-caching": "^6.1.0",
"fastify-cors": "^5.2.0",
"fastify-helmet": "^5.3.1",
"fastify-oas": "^3.0.8",
"nodemon": "^2.0.7",
"pino-pretty": "^4.7.1",
"typescript-json-schema": "^0.50.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/node": "^14.14.35",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.19.0",
"eslint": "^7.22.0",
"eslint-plugin-prettier": "^3.3.1",
"typescript": "^4.2.3"
}
}