-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.52 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.52 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
{
"name": "backend-example",
"version": "1.0.0",
"main": "lib/index",
"files": [
"lib"
],
"types": "lib/index.d.ts",
"repository": "git@github.com:mediafoundation/backend-example.git",
"author": "Media Foundation <hello@media.foundation>",
"license": "MIT",
"private": true,
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.14",
"@types/node": "^20.10.2",
"@types/sequelize": "^4.28.15",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"sqlite3": "^5.1.6",
"supertest": "^6.3.4",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
},
"dependencies": {
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"media-sdk": "^7.1.0",
"mongodb": "6.5",
"mysql2": "^3.6.1",
"pg": "^8.11.3",
"pg-hstore": "^2.3.4",
"sequelize": "^6.33.0",
"zod": "^3.22.4"
},
"scripts": {
"test": "npm run build && NODE_ENV=test jest",
"build": "rm -r ./dist && tsc && cp .env ./dist/.env",
"init": "npm run build && node dist/index.js",
"init:reset": "npm run build && node dist/index.js --reset",
"startApi": "node ./dist/api.js",
"startEventsDaemon": "node ./dist/eventsDaemon.js",
"startEventsDaemon:reset": "node ./dist/eventsDaemon.js --reset",
"startEventsListener": "node ./dist/eventsListener.js"
}
}