-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2 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
{
"name": "instantiate",
"version": "1.0.6",
"main": "dist/server.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/server.ts",
"build": "tsc",
"postbuild": "npx ncp src/templates dist/templates",
"start": "node dist/server.js",
"migrate:up": "node-pg-migrate up",
"test": "jest --coverage --forceExit",
"test:watch": "jest --watch",
"lint": "eslint --ext .ts src migrations tests",
"format": "eslint --ext .ts src migrations tests --fix",
"coverage:publish": "gh-pages -d coverage/lcov-report -b gh-pages -r https://x-access-token:${GITHUB_TOKEN}@github.com/valcriss/Instantiate.git",
"worker:mqtt": "pm2 start ecosystem.config.js",
"relay": "ngrok http 3000"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"description": "",
"devDependencies": {
"@types/express": "^5.0.1",
"@types/jest": "^30.0.0",
"@types/mock-fs": "^4.13.4",
"@types/mustache": "^4.2.5",
"@types/node": "^25.0.10",
"@types/node-fetch": "^2.6.12",
"@types/pg": "^8.11.11",
"@types/supertest": "^7.2.0",
"@types/yaml": "^1.9.6",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.6",
"gh-pages": "^6.3.0",
"jest": "^30.0.1",
"mock-fs": "^5.5.0",
"ncp": "^2.0.0",
"node-pg-migrate": "^8.0.0",
"pino-pretty": "^13.0.0",
"prettier": "^3.5.3",
"supertest": "^7.1.0",
"ts-jest": "^29.3.1",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^6.0.2"
},
"dependencies": {
"ajv": "^8.17.1",
"dotenv": "^17.0.1",
"execa": "^9.5.2",
"express": "^5.1.0",
"express-rate-limit": "^8.0.0",
"mqtt": "^5.11.0",
"mustache": "^4.2.0",
"node-fetch": "^3.3.2",
"npc": "^0.0.1",
"pg": "^8.14.1",
"pino": "^10.1.0",
"simple-git": "^3.27.0",
"yaml": "^2.7.1",
"yamljs": "^0.3.0"
}
}