-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·42 lines (42 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·42 lines (42 loc) · 1.05 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
{
"name": "core-api",
"version": "1.0.1",
"description": "core-api login/register/roles",
"main": "server.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "npx mocha -r ts-node/register ./tests/**/*.spec.ts",
"start": "npx ts-node-dev --respawn --transpile-only src/server.ts",
"build": "tsc"
},
"author": "C.Graamans",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"pg": "^8.11.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.32.1"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/body-parser": "^1.19.2",
"@types/chai": "^4.3.5",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@types/mocha": "^10.0.1",
"@types/node": "^20.3.1",
"@types/pg": "^8.10.2",
"@types/sequelize": "^4.28.15",
"chai": "^4.3.7",
"chai-http": "^4.4.0",
"mocha": "^10.2.0",
"ts-node": "^10.9.1"
}
}