-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.91 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
{
"name": "sequelize-orm-meetup",
"version": "1.0.0",
"description": "Demo project for Sequelize ORM Talk at Node Meetup",
"main": "index.js",
"scripts": {
"start": "ts-node-dev --files --respawn --rs --clear --notify ./src/server.ts",
"lint": "eslint . --ext .ts",
"build": "tsc --project ./",
"startBuild": "node ./build/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AndyInternet/sequelize-orm-meetup.git"
},
"author": "Andy Lawrence",
"license": "ISC",
"bugs": {
"url": "https://github.com/AndyInternet/sequelize-orm-meetup/issues"
},
"homepage": "https://github.com/AndyInternet/sequelize-orm-meetup#readme",
"dependencies": {
"@types/cls-hooked": "^4.3.3",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/http-errors": "^1.8.2",
"@types/node": "^18.0.4",
"@types/node-schedule": "^2.1.0",
"@types/pg": "^8.6.5",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"cls-hooked": "^4.2.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"helmet": "^6.0.0",
"pg": "^8.7.3",
"pg-hstore": "^2.3.4",
"pretty-error": "^4.0.0",
"sequelize": "^6.21.3",
"sequelize-cli": "^6.4.1",
"ts-node": "^10.9.0",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"rules": {
"@typescript-eslint/no-var-requires": "off"
},
"ignorePatterns": [
"**/tests/**",
"**/commands/**"
]
},
"prettier": {
"printWidth": 120,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": true,
"jsxSingleQuote": true,
"endOfLine": "lf"
}
}