-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.92 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
64
{
"name": "@thatconference/schema",
"version": "4.1.0",
"description": "Shared schema bits (e.g enums) between entity services",
"main": "index.js",
"engines": {
"node": ">=16 <21"
},
"scripts": {
"build": "rimraf __build__ && babel ./src -d ./__build__ --copy-files --ignore ./**/__tests__",
"postbuild": "cp ./package.json ./package-lock.json ./__build__",
"dev": "nodemon -e js --watch src --ignore '*.test.js, *.tests.js' --exec npm run build",
"test": "jest --coverage --passWithNoTests",
"lint": "eslint 'src/**/*.js'",
"validate": "concurrently npm:test npm:lint npm:build ",
"prenpm:publish": "npm run build",
"npm:publish": "npm publish ./__build__ --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ThatConference/that-api-schema.git"
},
"keywords": [
"graphql",
"schema",
"typedefs",
"DocumentNode"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ThatConference/that-api-schema/issues"
},
"homepage": "https://github.com/ThatConference/that-api-schema#readme",
"peerDependencies": {
"graphql": "^16.8.1"
},
"dependencies": {
"@graphql-tools/merge": "^9.0.1"
},
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.5",
"@babel/eslint-parser": "^7.23.3",
"@babel/node": "^7.22.19",
"@babel/preset-env": "^7.23.5",
"babel-jest": "^29.7.0",
"concurrently": "^8.2.2",
"dotenv": "^16.3.1",
"eslint": "~8.55.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "~4.3.8",
"jest-cli": "^29.7.0",
"nodemon": "^3.0.2",
"prettier-eslint": "^16.1.2",
"prettier-eslint-cli": "~8.0.1"
}
}