-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.7 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
{
"name": "node-sand-box",
"version": "1.0.0",
"main": "src/app.ts",
"license": "MIT",
"private": true,
"scripts": {
"build": "tsc -p tsconfig.prod.json",
"start": "nodemon src/app.ts",
"lint": "eslint --ext .ts ./src",
"test": "mocha -r ts-node/register ./src/tests/*.spec.ts --exit"
},
"dependencies": {
"@sequelize/core": "^7.0.0-alpha.20",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-session": "^1.17.1",
"keycloak-connect": "^21.1.1",
"pg": "^8.5.1",
"sqlite3": "^5.0.3",
"ts-node": "^10.7.0",
"typescript": "^4.6.3",
"winston": "^3.6.0"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/keycloak-connect": "^7.0.0",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.23",
"@types/sinon": "^10.0.11",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"chai": "^4.3.6",
"chai-http": "^4.3.0",
"eslint": "^8.12.0",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^9.2.1",
"nodemon": "^2.0.15",
"prettier": "^2.6.1",
"sinon": "^13.0.1"
},
"eslintConfig": {
"env": {
"browser": true,
"es2021": true
},
"extends": [
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": [
"@typescript-eslint",
"prettier"
],
"rules": {
"prettier/prettier": [
"error",
{
"singleQuote": true
}
]
}
}
}