This repository has been archived by the owner on Aug 17, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.53 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "git-chat-server",
"version": "0.0.1",
"repository": "[email protected]:flyin/git-chat-example.git",
"author": "flyin <[email protected]>",
"license": "MIT",
"main": "bin/server.js",
"scripts": {
"start:dev": "concurrently 'npm run tsc:watch' 'npm run server:dev'",
"server:dev": "just-wait -p dist/server.js && NODE_PATH=./dist nodemon --watch dist bin/server.js",
"build": "rimraf ./dist/ && tsc",
"tsc:watch": "tsc -w",
"test": "jest --forceExit",
"test:watch": "jest --watch",
"lint": "tslint --project tsconfig.json -c tslint.json 'src/**/*.ts'"
},
"dependencies": {
"axios": "^0.16.2",
"bcrypt": "^1.0.2",
"dotenv": "^4.0.0",
"github": "^9.2.0",
"graphql": "^0.10.5",
"graphql-redis-subscriptions": "^1.2.0",
"graphql-server-koa": "^1.1.0",
"graphql-subscriptions": "^0.4.4",
"graphql-tools": "^1.2.1",
"jsonwebtoken": "^7.4.3",
"kcors": "^2.2.1",
"koa": "^2.3.0",
"koa-bodyparser": "^4.2.0",
"koa-logger": "^3.0.1",
"koa-router": "^7.2.1",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"mongoose": "4.11.7",
"source-map-support": "^0.4.16",
"subscriptions-transport-ws": "^0.8.2",
"validator": "^8.0.0",
"winston": "^2.3.1"
},
"devDependencies": {
"@types/bcrypt": "^1.0.0",
"@types/graphql": "^0.10.2",
"@types/jest": "^20.0.7",
"@types/jsonwebtoken": "^7.2.3",
"@types/koa": "^2.0.39",
"@types/lodash": "^4.14.73",
"@types/mongodb": "^2.2.10",
"@types/mongoose": "^4.7.20",
"@types/node": "^8.0.24",
"@types/validator": "^6.2.2",
"@types/winston": "^2.3.4",
"@types/ws": "^3.0.2",
"concurrently": "^3.5.0",
"jest": "^20.0.4",
"jest-cli": "^20.0.4",
"just-wait": "^1.0.11",
"nodemon": "^1.11.0",
"rimraf": "^2.6.1",
"ts-jest": "^20.0.10",
"tslint": "^5.6.0",
"tslint-config-standard": "^6.0.1",
"typescript": "^2.4.2"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.ts"
],
"coveragePathIgnorePatterns": [
"/__tests__/",
"\\.(test|spec)\\.ts$"
],
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"modulePathIgnorePatterns": [
"<rootDir>/(dist|tmp|cache)/"
],
"modulePaths": [
"<rootDir>/src/"
],
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"setupFiles": [
"<rootDir>/src/utils/tests-setup.ts"
],
"testEnvironment": "node",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$"
}
}