This repository was archived by the owner on Aug 7, 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
57 lines (57 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.93 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
{
"name": "@splist/splode",
"version": "0.0.0",
"main": "src/index.ts",
"license": "AGPL-3.0",
"contributors": [
"Jdender~ <jdenderplays@gmail.com> (https://github.com/Jdender)"
],
"scripts": {
"fix": "yarn lint --fix; yarn format --write",
"build": "tsc",
"format": "prettier --ignore-path .gitignore --check \"./**/*.{{j,t}{s,sx},flow,{{sc,c},le}ss,json,m{d,dx},{y,ya}ml}\"",
"gendocs": "typedoc",
"lint": "eslint --ignore-path .gitignore ./**/*.ts",
"start": "ts-node-dev --respawn --files ."
},
"dependencies": {
"@nestjs/common": "^6.7.2",
"@nestjs/core": "^6.7.2",
"@nestjs/graphql": "^6.5.1",
"@nestjs/jwt": "^6.1.1",
"@nestjs/passport": "^6.1.0",
"@nestjs/platform-express": "^6.7.2",
"@nestjs/typeorm": "^6.1.3",
"apollo-server-express": "^2.9.4",
"class-transformer": "^0.2.3",
"class-validator": "^0.10.0",
"graphql": "^14.5.8",
"graphql-subscriptions": "^1.1.0",
"graphql-tools": "^4.0.5",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.5.3",
"sqlite3": "^4.1.0",
"subscriptions-transport-ws": "^0.9.16",
"type-graphql": "^0.17.5",
"typeorm": "^0.2.19"
},
"devDependencies": {
"@splist/code-style": "^1.0.1",
"@types/express": "^4.17.1",
"@types/node": "^12.7.7",
"@types/passport-jwt": "^3.0.2",
"@types/passport-local": "^1.0.33",
"@typescript-eslint/eslint-plugin": "^2.3.1",
"@typescript-eslint/parser": "^2.3.1",
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.3.0",
"prettier": "^1.18.2",
"ts-node": "^8.4.1",
"ts-node-dev": "^1.0.0-pre.43",
"typedoc": "^0.15.0",
"typescript": "^3.6.3"
}
}