-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.33 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": "ts-boilerplate",
"version": "1.1.0",
"main": "dist/index.js",
"license": "UNLICENSED",
"engines": {
"node": "^18"
},
"type": "module",
"scripts": {
"start": "ts-node src/index.ts",
"build:nocheck": "babel src --extensions '.ts' -d dist --delete-dir-on-start",
"remove-type-module": "cat package.json | jq 'del(.type)' > package.tmp && mv package.tmp package.json",
"build:babel": "npm run lint:tsc && npm run build:nocheck",
"build": "rm -rf dist && tsc",
"build:declaration": "tsc --emitDeclarationOnly",
"run-compiled": "node",
"lint": "eslint src/**",
"lint:tsc": "tsc --noEmit",
"test": "vitest",
"test:ui": "vitest --ui"
},
"importSort": {
".ts, .tsx": {
"parser": "typescript",
"style": "module-scoped"
}
},
"eslintIgnore": [
"/**/*.js"
],
"dependencies": {
"@sentry/node": "^7.54.0",
"@supercharge/promise-pool": "^3.0.0",
"connect-pg-simple": "^8.0.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-session": "^1.17.3",
"limiter-es6-compat": "^2.1.2",
"memoizee": "^0.4.15",
"nanoid": "^4.0.2",
"pg": "^8.10.0"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@types/babel__core": "^7.20.0",
"@types/babel__preset-env": "^7.9.2",
"@types/connect-pg-simple": "^7.0.0",
"@types/eslint": "^8.21.1",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.7",
"@types/memoizee": "^0.4.8",
"@types/node": "^18.14.0",
"@types/pg": "^8.6.6",
"@types/prettier": "^2.7.2",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"@vitest/ui": "^0.28.5",
"babel-plugin-module-resolver": "^5.0.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"prettier": "^2.8.4",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.5",
"vitest": "^0.28.5"
}
}