forked from smapiot/sample-pilet-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.99 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "sample-pilet-service",
"version": "1.8.0",
"description": "Piral: Sample pilet feed service.",
"main": "dist",
"typings": "dist",
"homepage": "https://piral.io",
"scripts": {
"test:unit": "jest src",
"test:watch": "npm run test:unit -- --watch",
"test": "npm run lint && npm run test:unit",
"start": "node dist/cli.js",
"watch": "node index.js",
"lint": "eslint -c .eslintrc.js 'src/**/*.ts'",
"prettier": "prettier --config prettier.config.js --write 'src/**/*.ts'",
"build": "tsc --project tsconfig.json",
"serve": "node dist/index.js"
},
"engines": {
"node": ">=16.0.0"
},
"bin": {
"sample-pilet-service": "./dist/cli.js"
},
"repository": {
"type": "git",
"url": "[email protected]:smapiot/sample-pilet-service.git"
},
"keywords": [
"piral",
"pilet",
"feed",
"service",
"sample"
],
"author": {
"name": "smapiot",
"url": "https://smapiot.com"
},
"license": "MIT",
"dependencies": {
"@apollo/server": "^4.9.5",
"connect-busboy": "^1.0.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"graphql": "^16.8.1",
"graphql-tag": "^2.12.6",
"graphql-type-json": "^0.3.2",
"mime-types": "^2.1.35",
"response-time": "^2.3.2",
"tar": "^6.2.0"
},
"devDependencies": {
"@types/connect-busboy": "^0.0.3",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/graphql-type-json": "^0.3.0",
"@types/jest": "^29.5.11",
"@types/mime-types": "^2.1.1",
"@types/node": "^16",
"@types/response-time": "^2.3.5",
"@types/tar": "^6.1.10",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"dotenv": "^16.3.1",
"eslint": "^8.55.0",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-react": "^7.33.2",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"minimatch": "^9.0.3",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5"
}
}