-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.98 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.98 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
65
66
67
68
69
70
71
{
"name": "x2-server-sqlserver",
"version": "2.0.0",
"private": true,
"license": "MIT",
"author": "Ed Pfromer epfromer@gmail.com",
"description": "GraphQL interface on email in SQL Server for X2 client",
"main": "index.js",
"docker-version": "https://hub.docker.com/_/microsoft-mssql-server",
"scripts": {
"yarn": "yarn",
"docker": "docker run --name sqlserver -p 1433:1433 -e \"ACCEPT_EULA=Y\" -e \"SA_PASSWORD=f0000Bar!\" -d mcr.microsoft.com/mssql/server:latest",
"build": "yarn install && tsc --build --verbose",
"start": "node build/index.js",
"watch": "nodemon src/index.ts"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-graphql": "^0.12.0",
"graphql": "^16.9.0",
"mssql": "^11.0.1",
"pst-extractor": "^1.10.0",
"stopword": "^3.0.1",
"uuid": "^10.0.0"
},
"devDependencies": {
"@babel/core": "^7.24.9",
"@babel/eslint-parser": "^7.24.8",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/mssql": "^9.1.5",
"@types/node": "^20.14.10",
"@types/stopword": "^2.0.3",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"eslint": "^9.7.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.4.0",
"nodemon": "^3.1.4",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"plugin:prettier/recommended",
"plugin:@typescript-eslint/recommended"
]
},
"prettier": {
"semi": false,
"arrowParens": "always",
"singleQuote": true,
"trailingComma": "es5",
"endOfLine": "auto"
},
"jest": {
"collectCoverage": true,
"automock": false
}
}