forked from bradleyboy/tuql
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.18 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
{
"name": "@acdibble/tuql",
"version": "2.0.1",
"description": "",
"main": "dist/index.js",
"bin": {
"tuql": "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 <brad.daily@gmail.com>",
"license": "MIT",
"keywords": [
"graphql",
"sqlite"
],
"dependencies": {
"command-line-args": "^5.2.1",
"command-line-usage": "^6.1.3",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-graphql": "^0.12.0",
"graphql": "^16.6.0",
"graphql-relay": "^0.10.0",
"graphql-sequelize": "^9.4.3",
"pluralize": "^8.0.0",
"sequelize": "^6.25.0",
"sqlite3": "^5.1.2"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.19.3",
"@babel/preset-env": "^7.19.4",
"babel-jest": "^29.1.2",
"jest": "^29.1.2",
"prettier": "^2.7.1"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js",
"!src/__tests__/*"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
]
}
}