This repository has been archived by the owner on Jun 16, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
78 lines (78 loc) · 2.31 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
78
{
"private": true,
"name": "@anontown/server",
"version": "1.0.0",
"dependencies": {
"@anontown/schema": "^1.0.0",
"@kgtkr/utils": "^1.0.0",
"@types/nanoid": "^1.2.1",
"apollo-resolvers": "^1.4.1",
"apollo-server-express": "^2.4.8",
"array-range": "^1.0.1",
"cors": "^2.8.5",
"cron": "^1.7.0",
"crypto-js": "^3.1.9-1",
"dataloader": "^1.4.0",
"elasticsearch": "^13.3.1",
"express": "^4.16.4",
"fp-ts": "^1.15.0",
"fs-extra": "^7.0.1",
"fs-promise": "^2.0.3",
"graphql": "^14.1.1",
"graphql-iso-date": "^3.6.1",
"immutable": "^4.0.0-rc.9",
"ioredis": "^4.9.0",
"jsonwebtoken": "^8.5.1",
"lazy-value": "^1.0.0",
"log4js": "^4.0.2",
"migrate": "^1.6.2",
"moment-timezone": "^0.5.23",
"mongodb": "^3.2.2",
"nanoid": "^2.0.1",
"request": "^2.88.0",
"rxjs": "^6.4.0",
"source-map-support": "^0.5.11",
"type-zoo": "^3.3.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^1.0.3",
"@graphql-codegen/core": "^1.0.3",
"@graphql-codegen/typescript": "^1.0.3",
"@graphql-codegen/typescript-resolvers": "^1.0.3",
"@types/cors": "^2.8.4",
"@types/cron": "^1.7.0",
"@types/crypto-js": "^3.1.43",
"@types/elasticsearch": "^5.0.32",
"@types/express": "^4.16.1",
"@types/fs-extra": "^5.0.5",
"@types/fs-promise": "^1.0.3",
"@types/graphql": "^14.0.7",
"@types/graphql-iso-date": "^3.3.1",
"@types/ioredis": "^4.0.10",
"@types/jest": "^24.0.11",
"@types/jsonwebtoken": "^8.3.2",
"@types/lazy-value": "^1.0.0",
"@types/moment-timezone": "^0.5.12",
"@types/mongodb": "^3.1.22",
"@types/node": "^10.14.2",
"@types/request": "2.48.1",
"apollo": "^2.6.2",
"jest": "^24.5.0",
"sloc": "^0.2.1",
"ts-jest": "^24.0.0",
"tslint": "^5.14.0",
"typescript": "^3.3.4000"
},
"scripts": {
"build": "npm run codegen&&tsc",
"start": "node ./dist/app.js",
"test": "jest",
"test:io": "TEST_MODE=IO jest -w 1 --forceExit",
"lint": "tslint -p tsconfig.json -c tslint.json 'src/**/*.ts'",
"lint:fix": "tslint -p tsconfig.json -c tslint.json 'src/**/*.ts' --fix",
"loc": "sloc --format cli-table ./src",
"codegen": "gql-gen --config codegen.yml",
"start:dev": "./start-dev.sh",
"migrate": "node ./dist/migrate.app.js"
}
}