-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.35 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
{
"name": "appsync-graphql-validation-directive",
"version": "0.0.1",
"license": "Apache-2.0",
"author": "Lenar Mazitov",
"keywords": [
"graphql",
"appsync",
"aws"
],
"main": "lib/index.js",
"scripts": {
"test": "jest --verbose false",
"test-ci": "jest --ci -i",
"build": "tsc",
"clean": "rm -rf ./lib",
"prettier-tslint": "prettier-tslint fix 'src/**/*.ts'"
},
"dependencies": {
"@types/node": "^12.12.11",
"graphql": "^14.5.8",
"graphql-dynamodb-transformer": "^5.18.0",
"graphql-mapping-template": "^3.25.0",
"graphql-transformer-common": "^3.32.0",
"graphql-transformer-core": "^5.18.0",
"jest-cli": "^25.1.0"
},
"devDependencies": {
"@types/jest": "23.1.1",
"jest": "^23.1.0",
"prettier": "^1.19.1",
"prettier-tslint": "^0.4.2",
"ts-jest": "^22.4.6",
"tslint": "^5.20.1",
"tslint-config-airbnb-base": "^0.3.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "~3.6.3"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testURL": "http://localhost",
"testRegex": "(src/__tests__/.*.test.*)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"prettier": {
"singleQuote": true,
"printWidth": 100
}
}