forked from erxes/erxes-api
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
120 lines (120 loc) · 3.51 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "erxes-api",
"version": "0.9.14",
"description": "GraphQL API for erxes main project",
"homepage": "https://erxes.io",
"repository": "https://github.com/erxes/erxes-api",
"bugs": "https://github.com/erxes/erxes-api/issues",
"keywords": [
"node",
"express",
"graphql",
"apollo"
],
"license": "MIT",
"private": true,
"scripts": {
"start": "node dist",
"dev": "NODE_ENV=development nodemon -e ts src --exec ts-node",
"build": "tsc -p tsconfig.prod.json && cp -rf src/private dist/private",
"lint": "tslint 'src/**/*.ts'",
"format": "prettier --write --print-width 120 --single-quote --trailing-comma all 'src/**/*.ts'",
"precommit": "lint-staged",
"test": "jest --maxWorkers 4 --forceExit && ts-node ./src/commands/aftertest.ts ",
"loadInitialData": "mongorestore --db erxes ./initialData",
"customCommand": "ts-node ./src/commands/custom.ts",
"initProject": "ts-node ./src/commands/initProject.ts",
"engageSubscriptions": "ts-node ./src/commands/engageSubscriptions.ts",
"migrate": "migrate --compiler='ts:./ts-node-compiler.js' up"
},
"lint-staged": {
"*.ts": [
"prettier --write --print-width 120 --single-quote --trailing-comma all",
"git add"
]
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{ts}",
"!src/index.ts",
"!src/db/factories.ts",
"!src/db/connection.ts",
"!src/data/schema/**",
"!src/data/resolvers/subscriptions/**",
"!src/data/index.ts",
"!src/data/utils.ts"
]
},
"dependencies": {
"@google-cloud/pubsub": "0.18.0",
"apollo-server-express": "^2.3.1",
"aws-sdk": "^2.151.0",
"bcrypt": "^3.0.2",
"body-parser": "^1.17.1",
"cookie-parser": "^1.4.3",
"cors": "^2.8.1",
"dotenv": "^4.0.0",
"email-deep-validator": "^3.1.0",
"express": "^4.15.2",
"fbgraph": "^1.4.1",
"file-type": "^10.4.0",
"formidable": "^1.1.1",
"git-repo-info": "2.0.0",
"googleapis": "^33.0.0",
"graphql": "^14.0.2",
"graphql-redis-subscriptions": "^1.4.0",
"graphql-tools": "^4.0.3",
"handlebars": "^4.0.10",
"ioredis": "^3.2.2",
"jsonwebtoken": "^8.1.0",
"meteor-random": "^0.0.3",
"moment": "^2.18.1",
"mongoose": "^5.2.16",
"mongoose-type-email": "^1.0.5",
"node-schedule": "^1.2.5",
"nodemailer": "^4.1.3",
"oauth": "^0.9.15",
"request": "^2.88.0",
"requestify": "^0.2.5",
"sha256": "^0.2.0",
"strip": "^3.0.0",
"twit": "^2.2.9",
"underscore": "^1.8.3",
"validator": "^9.0.0",
"xlsx-populate": "^1.14.0"
},
"peerOptionalDependencies": {
"kerberos": "^1.0.0"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/cors": "^2.8.4",
"@types/dotenv": "^4.0.3",
"@types/express": "^4.16.0",
"@types/formidable": "^1.0.31",
"@types/google-cloud__pubsub": "^0.18.1",
"@types/graphql": "^14.0.3",
"@types/ioredis": "^3.2.15",
"@types/jest": "^23.3.0",
"@types/mongodb": "^3.1.2",
"@types/mongoose": "^5.2.1",
"@types/q": "^1.5.0",
"@types/request": "^2.47.1",
"@types/underscore": "^1.8.9",
"faker": "^4.1.0",
"husky": "^0.13.4",
"jest": "^21.2.1",
"jest-tobetype": "^1.1.0",
"lint-staged": "^3.6.0",
"migrate": "^1.6.2",
"nodemon": "^1.11.0",
"prettier": "^1.14.2",
"sinon": "^7.2.2",
"ts-jest": "^22.0.0",
"ts-node": "^7.0.0",
"tslint": "^5.8.0",
"tslint-config-prettier": "^1.1.0",
"tslint-config-standard": "^7.0.0",
"typescript": "^2.9.2"
}
}