-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.7 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
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"start": "yarn build && node lib/index.js",
"start:with:mongo": "MONGODB_VERSION=4.0 mongodb-runner start && yarn start",
"build": "graphql-codegen && tsc --outDir lib -p .",
"lint": "prettier --write \"src/**\" && eslint \"src/**\"",
"test": "graphql-codegen && TEST=true jest --coverage --watch",
"test:ci": "graphql-codegen && yarn lint && TEST=true jest --coverage",
"dev": "MONGODB_VERSION=4.0 mongodb-runner start && graphql-codegen && concurrently -r \"ts-node-dev --ignore-watch node_modules index.ts\" \"sleep 5 && yarn generate-schema && nodemon\" \"sleep 10 && graphql-codegen --watch\"",
"generate-schema": "get-graphql-schema -h X-Parse-Application-Id=dev -h X-Parse-Master-Key=dev http://localhost:1337/graphql > generated/schema.graphql",
"scan": "sonar-scanner",
"deploy-sonarqube": "docker run -d --name sonarqube -p 9000:9000 sonarqube",
"sonarqube": "docker start sonarqube"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Moumouls/next-atomic-gql-server.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Moumouls/next-atomic-gql-server"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"homepage": "https://github.com/Moumouls/next-atomic-gql-server",
"dependencies": {
"aws-sdk": "^2.624.0",
"express": "^4.17.1",
"graphql": "15.0.0",
"graphql-request": "^1.8.2",
"@nexus/schema": "^0.13.1",
"parse": "^2.13.0",
"parse-dashboard": "^2.1.0",
"parse-server": "moumouls/parse-server#4.8.2"
},
"devDependencies": {
"ts-node": "^8.5.3",
"typescript": "^3.9.3",
"@graphql-codegen/cli": "^1.12.2",
"@graphql-codegen/typescript": "^1.12.2",
"@graphql-codegen/typescript-graphql-request": "^1.12.2",
"@graphql-codegen/typescript-operations": "^1.12.2",
"@types/express": "^4.17.2",
"@types/parse": "^2.12.1",
"@types/get-port": "^4.2.0",
"@types/jest": "^25.2.3",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.9.0",
"concurrently": "^5.1.0",
"eslint": "^6.7.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-airbnb-typescript": "^7.2.0",
"eslint-config-prettier": "^6.7.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.1",
"get-graphql-schema": "^2.1.2",
"get-port": "^5.1.1",
"husky": "^3.1.0",
"jest": "^26.0.1",
"merge": "^1.2.1",
"mongodb-memory-server": "^6.0.1",
"mongodb-runner": "^4.8.0",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"sonarqube-scanner": "^2.5.0",
"ts-jest": "^26.0.0",
"ts-node-dev": "^1.0.0-pre.44"
}
}