-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.53 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.53 KB
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
{
"version": "0.1.0",
"license": "MIT",
"scripts": {
"build": "babel src/index.ts --out-file dist.js",
"test": "jest test"
},
"engines": {
"node": ">=10.x"
},
"main": "src/index.js",
"dependencies": {
"@babel/core": "^7.8.3",
"@babel/plugin-syntax-jsx": "^7.8.3",
"@babel/types": "^7.8.3",
"babel-plugin-macros": "^2.8.0",
"graphql": "^14.6.0"
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/node": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@types/babel-core": "^6.25.6",
"@types/jest": "^25.1.0",
"@types/node": "^13.5.0",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"babel-jest": "^25.1.0",
"babel-plugin-tester": "^8.0.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "2.20.0",
"eslint-plugin-jest": "^23.6.0",
"eslint-plugin-promise": "^4.2.1",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"typescript": "^3.7.5"
},
"eslintIgnore": [
"node_modules",
"coverage",
"__tests__",
"dist"
],
"prettier": {
"trailingComma": "es5",
"printWidth": 100,
"arrowParens": "always"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"/fixtures/"
],
"transform": {
"^.+\\.(js|jsx|ts|tsx)$": "<rootDir>/node_modules/babel-jest"
}
}
}