-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 2.01 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
{
"name": "@smoke-trees/postgres-backend",
"version": "2.4.1",
"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"
}
},
"standardx": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint/eslint-plugin"
]
},
"dependencies": {
"@smoke-trees/smoke-context": "^1.4.8",
"@types/express-serve-static-core": "^4.19.3",
"@types/qs": "^6.9.15",
"compression": "^1.7.4",
"dotenv": "^16.4.5",
"express": "^4.21.2",
"pg": "^8.11.3",
"qs": "^6.12.1",
"typeorm": "0.3.20",
"winston": "^3.12.0"
},
"devDependencies": {
"@types/chai": "^4.3.14",
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.21.2",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"c8": "^9.1.0",
"chai": "^4.4.1",
"chai-http": "^4.4.0",
"cors": "^2.8.5",
"eslint": "^8.57.0",
"mocha": "^10.3.0",
"nodemon": "^3.1.0",
"typescript": "5.4.3"
}
}