generated from K-FOSS/TS-Core-Template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.84 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
{
"name": "ts-core",
"version": "0.0.1",
"description": "TS-Core is a github repo template for TypeScript Projects",
"main": "src/index.ts",
"type": "module",
"private": true,
"scripts": {
"test": "ts-estest ./src/",
"prepublishOnly": "npm run build",
"build": "tsc -p ./tsconfig.build.json",
"start:debug": "node --loader @k-foss/ts-esnode --experimental-modules --experimental-specifier-resolution=node --harmony-top-level-await ./",
"dev": "nodemon",
"prettier": "prettier --config .prettierrc --check \"src/**/*ts\"",
"lint": "eslint ./src --ext .js,.ts"
},
"dependencies": {
"@baggie/math": "^1.1.0",
"@k-foss/ts-esnode": "^2.0.2",
"@octokit/auth": "^3.0.2",
"@octokit/graphql": "^4.6.0",
"@octokit/graphql-schema": "^10.21.0",
"@sindresorhus/is": "^4.0.0",
"apollo-server": "^2.19.0",
"apollo-server-fastify": "^3.0.0-alpha.3",
"apollo-server-testing": "^2.19.0",
"bullmq": "^1.14.4",
"dotenv": "^8.2.0",
"fastify": "^3.11.0",
"hyperid": "^2.1.0",
"reflect-metadata": "^0.1.13",
"type-graphql": "^1.1.1",
"typedi": "^0.10.0",
"typescript": "^4.1.3",
"winston": "^3.3.3"
},
"devDependencies": {
"@k-foss/ts-estests": "^1.0.6",
"@types/node": "^14.14.25",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^5.0.0",
"nodemon": "^2.0.7",
"prettier": "^2.2.1"
},
"author": {
"email": "me@kristianjones.dev",
"name": "Kristian Jones",
"url": "https://kristianjones.dev"
},
"license": "MIT"
}