forked from erxes/erxes-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.79 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
{
"name": "erxes-app-api",
"version": "0.9.6",
"description": "GraphQL API for erxes main project",
"homepage": "https://erxes.io",
"repository": "https://github.com/erxes/erxes-app-api",
"bugs": "https://github.com/erxes/erxes-app-api/issues",
"keywords": [
"node",
"express",
"graphql",
"apollo"
],
"license": "MIT",
"private": true,
"scripts": {
"start": "node dist",
"dev": "NODE_ENV=development nodemon src --exec babel-node",
"build": "babel src --out-dir dist --ignore __tests__,tests --copy-files",
"lint": "eslint src",
"format": "prettier --write --print-width 100 --single-quote --trailing-comma all 'src/**/*.js'",
"precommit": "lint-staged",
"test": "jest --runInBand --coverage --forceExit",
"loadInitialData": "babel-node ./src/initialData.js",
"customCommand": "babel-node ./src/commands/custom.js",
"initProject": "babel-node ./src/commands/initProject.js",
"engageSubscriptions": "babel-node ./src/commands/engageSubscriptions.js"
},
"lint-staged": {
"*.js": [
"prettier --write --print-width 100 --single-quote --trailing-comma all",
"git add"
]
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js}",
"!src/index.js",
"!src/db/factories.js",
"!src/db/connection.js",
"!src/data/schema/**",
"!src/data/resolvers/subscriptions/**",
"!src/data/index.js",
"!src/data/utils.js"
]
},
"dependencies": {
"aws-sdk": "^2.151.0",
"bcrypt": "^1.0.3",
"body-parser": "^1.17.1",
"cors": "^2.8.1",
"dotenv": "^4.0.0",
"express": "^4.15.2",
"fbgraph": "^1.4.1",
"formidable": "^1.1.1",
"graphql": "^0.10.1",
"graphql-redis-subscriptions": "^1.4.0",
"graphql-server-core": "^0.8.2",
"graphql-server-express": "^0.8.2",
"graphql-server-module-graphiql": "^0.8.2",
"graphql-subscriptions": "^0.4.4",
"graphql-tools": "^1.0.0",
"handlebars": "^4.0.10",
"ioredis": "^3.2.2",
"jsonwebtoken": "^8.1.0",
"meteor-random": "^0.0.3",
"moment": "^2.18.1",
"mongoose": "^4.9.2",
"mongoose-type-email": "^1.0.5",
"node-schedule": "^1.2.5",
"nodemailer": "^4.1.3",
"oauth": "^0.9.15",
"sha256": "^0.2.0",
"sinon": "^4.0.1",
"strip": "^3.0.0",
"subscriptions-transport-ws": "^0.9.6",
"twit": "^2.2.9",
"underscore": "^1.8.3",
"validator": "^9.0.0",
"xlsx-populate": "^1.14.0"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.6.0",
"coveralls": "^3.0.2",
"eslint": "3.19.0",
"faker": "^4.1.0",
"husky": "^0.13.4",
"jest": "^21.2.1",
"jest-tobetype": "^1.1.0",
"lint-staged": "^3.6.0",
"nodemon": "^1.11.0",
"prettier": "^1.4.4"
}
}