-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.04 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": "@gapi/starter-advanced",
"version": "1.8.23",
"description": " ",
"main": "index.js",
"scripts": {
"postpublish": "git push -f ssh://[email protected]:522/gapi/gapi-starter-postgres-sequelize.git && git push --tags && git push ssh://[email protected]:522/gapi/gapi-starter-postgres-sequelize.git --tags",
"start": "gapi start --local --lint",
"start:prod": "gapi start --prod",
"stop:prod": "gapi stop --prod",
"start:docker": "gapi app start",
"stop:docker": "gapi app stop",
"build:docker": "gapi app build",
"start:workers": "gapi workers start",
"stop:workers": "gapi workers stop ",
"pretest": "npm run lint",
"lint": "tslint -c tslint.json 'src/**/*.{ts,tsx}'",
"test": "gapi test --before",
"test-watch": "gapi test --before && gapi test --watch"
},
"author": "Kristiyan Tachev",
"license": "MIT",
"dependencies": {
"@gapi/auth": "^1.8.22",
"@gapi/core": "^1.8.22",
"graphql": "^14.5.8",
"@gapi/sequelize": "^1.8.22",
"pg": "^6.4.2"
},
"devDependencies": {
"@types/jest": "^22.2.0",
"@types/graphql": "^14.5.0",
"graphql-tester": "0.0.5",
"jest": "^22.4.2",
"pm2-docker": "^2.1.0",
"typescript": "3.0.1",
"jest-cli": "^22.4.2",
"ts-jest": "^22.4.1",
"ts-lint": "^4.5.1"
},
"nodemonConfig": {
"ignore": [
"./src/**/*.spec.ts"
],
"verbose": true,
"exec": "ts-node ./src/main.ts",
"watch": [
"./src/**/*.ts"
],
"events": {
"restart": "sleep 5 && gapi schema introspect"
},
"ext": "ts"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/"
],
"coverageReporters": [
"lcov",
"html"
],
"rootDir": "./",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json",
"node"
],
"transform": {
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "/src/.*\\.spec.(ts|tsx|js)$",
"verbose": true,
"collectCoverage": true
}
}