-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.98 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
{
"name": "devmein-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "yarn run jest",
"dev": "node --abort-on-uncaught-exception -r dotenv/config -r tsconfig-paths/register -r ts-node/register ./src/index.js",
"start": "env-cmd -f ./.env node ./lib",
"build": "rm -rf lib && ./node_modules/.bin/babel src --out-dir lib"
},
"author": "Murilo Medeiros",
"license": "ISC",
"dependencies": {
"@babel/runtime": "^7.11.1",
"@types/jest": "^25.1.2",
"apisauce": "^1.1.1",
"apollo-server-express": "^2.14.2",
"apollo-server-integration-testing": "^2.3.0",
"apollo-server-testing": "^2.11.0",
"axios": "^0.19.2",
"base-64": "^1.0.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"env-cmd": "^10.1.0",
"express": "^4.17.1",
"firebase-admin": "^8.9.2",
"graphql": "^14.6.0",
"graphql-tag": "^2.10.3",
"graphql-tools": "^4.0.6",
"jsonwebtoken": "^8.5.1",
"moment": "^2.24.0",
"moment-timezone": "^0.5.27",
"mongodb": "^3.5.2",
"mongoose": "^5.8.12",
"octokit": "^1.7.1",
"subscriptions-transport-ws": "^0.9.16",
"validator": "^12.2.0"
},
"devDependencies": {
"@types/base-64": "^1.0.0",
"@types/node": "^16.4.0",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"eslint": "^7.8.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^3.4.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-import-helpers": "^1.1.0",
"eslint-plugin-jest": "^21.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^2.6.2",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.10.1",
"typescript": "^4.3.5"
},
"jest": {
"testEnvironment": "node",
"setupFiles": [
"dotenv/config"
]
}
}