-
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 1.85 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
72
73
74
75
76
77
78
79
{
"name": "sample-pilet-service",
"version": "1.10.0",
"description": "Piral: Sample pilet feed service.",
"main": "dist",
"typings": "dist",
"homepage": "https://piral.io",
"scripts": {
"test:unit": "vitest 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 'src/**/*.ts'",
"prettier": "prettier --config prettier.config.js --write 'src/**/*.ts'",
"build": "tsc --project tsconfig.json",
"serve": "node dist/cli.js"
},
"engines": {
"node": ">=20",
"npm": ">=10"
},
"bin": {
"sample-pilet-service": "./dist/cli.js"
},
"repository": {
"type": "git",
"url": "git@github.com:smapiot/sample-pilet-service.git"
},
"keywords": [
"piral",
"pilet",
"feed",
"service",
"sample"
],
"author": {
"name": "smapiot",
"url": "https://smapiot.com"
},
"license": "MIT",
"dependencies": {
"@apollo/server": "^5",
"connect-busboy": "^1",
"cors": "^2",
"express": "^4",
"graphql": "^16",
"graphql-tag": "^2",
"graphql-type-json": "^0.3",
"mime-types": "^2",
"response-time": "^2",
"tar": "^7"
},
"devDependencies": {
"@types/connect-busboy": "^0.0.3",
"@types/cors": "^2",
"@types/express": "^4",
"@types/graphql-type-json": "^0.3",
"@types/mime-types": "^2",
"@types/node": "^20",
"@types/response-time": "^2",
"@typescript-eslint/eslint-plugin": "^8",
"@typescript-eslint/parser": "^8",
"dotenv": "^16",
"eslint": "^9",
"eslint-plugin-no-null": "^1",
"eslint-plugin-react": "^7",
"minimatch": "^9",
"prettier": "^3",
"ts-node": "^10",
"typescript": "^5",
"vitest": "^4"
},
"overrides": {
"express@^4": {
"body-parser@^1": "^1.20.4"
}
}
}