forked from acdibble/tuql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.22 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
{
"name": "@mikespub/tuql",
"version": "2.2.0",
"description": "",
"main": "dist/index.js",
"bin": "dist/bin/index.js",
"scripts": {
"start": "babel-node src/index.js",
"build": "babel src --out-dir dist",
"prepublish": "npm run build",
"test": "jest",
"test:watch": "jest --watch"
},
"author": "Brad Daily <[email protected]>",
"license": "MIT",
"keywords": [
"graphql",
"sqlite"
],
"dependencies": {
"command-line-args": "^6.0.1",
"command-line-usage": "^7.0.3",
"cors": "^2.8.5",
"express": "^4.21.2",
"graphql": "^16.10.0",
"graphql-http": "^1.22.3",
"graphql-playground-middleware-express": "^1.7.23",
"graphql-relay": "^0.10.2",
"graphql-sequelize": "^9.5.1",
"pluralize": "^8.0.0",
"sequelize": "^6.37.5",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"prettier": "^3.4.2"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js",
"!src/__tests__/*"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
]
}
}