-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.48 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
{
"name": "pokechecked",
"version": "1.0.0",
"description": "",
"main": "./build/index.js",
"scripts": {
"start": "tsc && node ./build/index.js",
"generate": "graphql-codegen --config codegen.yml",
"dev": "./node_modules/nodemon/bin/nodemon.js",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"test": "jest",
"test:watch": "jest --watchAll"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testPathIgnorePatterns": [
"__fixtures__"
],
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@graphql-codegen/cli": "^1.5.0",
"@graphql-codegen/introspection": "^1.5.0",
"@graphql-codegen/typescript": "^1.5.0",
"@graphql-codegen/typescript-resolvers": "^1.5.0",
"@types/graphql": "^14.2.3",
"@types/jest": "^23.3.9",
"husky": "^3.0.5",
"jest": "^23.6.0",
"jest-watch-typeahead": "^0.4.0",
"nodemon": "^1.19.2",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"ts-jest": "^23.10.4",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.1.6"
},
"dependencies": {
"@iteam/config": "^12.1.0",
"apollo-server-express": "^2.1.0",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"got": "^9.6.0",
"graphql": "^14.0.2",
"moment": "^2.24.0",
"query-string": "^6.8.2"
}
}