-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2 KB
/
package.json
File metadata and controls
73 lines (73 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
69
70
71
72
73
{
"name": "@smoke-trees/postgres-backend",
"version": "4.0.0",
"description": "Postgres Backend Core files",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "tsc",
"lint": "eslint src/**/*.ts",
"test": "NODE_OPTIONS=--enable-source-maps mocha --exit --file dist/tests/index.test.js",
"test-w": "set NODE_OPTIONS=--enable-source-maps && set CI=true && mocha --exit dist/tests/index.test.js",
"watch": "tsc -w",
"dev": "NODE_OPTIONS=--enable-source-maps nodemon -L -w ./dist -w ./src -w docs/build/docs.yaml dist/Example/index.js",
"prepare": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smoke-trees/node-postgres-backend-core.git"
},
"keywords": [
"nodejs",
"typescript",
"express",
"postgres"
],
"author": "SmokeTrees",
"license": "MIT",
"homepage": "https://github.com/smoke-trees/node-postgres-backend-core#readme",
"eslintConfig": {
"rules": {
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "error"
}
},
"dependencies": {
"@types/compression": "^1.8.1",
"@types/cors": "^2.8.19",
"@types/lodash.set": "^4.3.9",
"@types/node": "^20.19.9",
"@types/qs": "^6.14.0",
"compression": "^1.8.1",
"cors": "^2.8.5",
"dotenv": "^16.6.1",
"lodash.set": "^4.3.2",
"qs": "^6.14.0",
"winston": "^3.17.0"
},
"peerDependencies": {
"@smoke-trees/smoke-context": ">=1.5.0",
"@types/express": "*",
"@types/express-serve-static-core": "*",
"express": ">=5.0.0 <6.0.0",
"pg": "*",
"typeorm": ">=0.3.20 <1.0.0"
},
"devDependencies": {
"@types/chai": "^4.3.20",
"@types/mocha": "^10.0.10",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"c8": "^9.1.0",
"chai": "^4.5.0",
"chai-http": "^4.4.0",
"eslint": "^9.32.0",
"express": "~5.0.1",
"mocha": "^10.8.2",
"nodemon": "^3.1.10",
"typescript": "5.4.3"
}
}