This repository was archived by the owner on Oct 30, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.04 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 3.04 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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "fullstack-sandbox-api",
"version": "0.0.1",
"description": "GraphQL API for Fullstack Sandbox App",
"engines": {
"node": ">=10.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xhudec/full-stack-sandbox-api.git"
},
"keywords": [
"node",
"graphql",
"apollo",
"typescript",
"api"
],
"author": "Lukas Hudec <hudec.luke@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/xhudec/full-stack-sandbox-api/issues"
},
"homepage": "https://github.com/xhudec/full-stack-sandbox-api#readme",
"scripts": {
"dev": "nodemon",
"build": "npm run build:js",
"build:types": "tsc --emitDeclarationOnly --noEmit false -d",
"build:js": "babel src --out-dir lib --extensions '.ts' --source-maps inline",
"typeorm": "yarn build:js && ts-node -r tsconfig-paths/register ./node_modules/.bin/typeorm",
"typeorm:migration:generate": "npm run typeorm -- migration:generate",
"typeorm:migration:run": "npm run typeorm -- migration:run",
"typeorm:migration:revert": "npm run typeorm -- migration:revert",
"_prettier": "prettier \"**/*.+(js|jsx|ts|tsx|json|css|less|graphql|md|mdx)\"",
"prettier:format": "npm run _prettier -- --write",
"prettier:validate": "npm run _prettier -- --list-different",
"lint:js": "eslint --ext js,jsx,ts,tsx .",
"lint": "npm run lint:js",
"type-check": "tsc --project ./tsconfig.json",
"test": "is-ci \"test:coverage\" \"test:watch\"",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@types/graphql": "^14.5.0",
"apollo-server-express": "^2.18.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"graphql": "^14.7.0",
"pg": "^8.3.3",
"reflect-metadata": "^0.1.13",
"type-graphql": "^0.17.6",
"typeorm": "^0.2.28"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/node": "^7.10.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@commitlint/cli": "^11.0.0",
"@strv/commitlint-config": "^1.1.0",
"@strv/eslint-config-node": "^2.2.2",
"@strv/eslint-config-typescript": "^2.1.5",
"@strv/prettier-config": "^1.0.3",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.2",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-transform-typescript-metadata": "^0.3.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.0.2",
"husky": "^4.3.0",
"is-ci-cli": "^2.1.2",
"jest": "^25.5.4",
"jest-watch-select-projects": "^2.0.0",
"jest-watch-typeahead": "^0.5.0",
"nodemon": "^2.0.4",
"prettier": "^2.1.2",
"pretty-quick": "^3.0.2",
"ts-jest": "^25.5.1",
"ts-node": "^9.0.0",
"typescript": "^3.9.7"
}
}