-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.33 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.33 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
{
"name": "trackandstore-api",
"version": "0.0.1",
"description": "The API for interacting with the TrackAndStore database",
"main": "index.js",
"type": "module",
"imports": {
"#utils/*": "./src/utils/*",
"#src/*": "./src/*"
},
"scripts": {
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"migrate:up": "node ./migrations/javascript/up.js",
"migrate:down": "node ./migrations/javascript/down.js",
"migrate:reset": "node ./migrations/javascript/reset.js",
"express:up": "node ./src/server",
"service:test": "node ./src/entity/EntityService.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"start": "node ./src/server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Murky-dev/TrackAndStore.git"
},
"author": "Murky-dev",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/Murky-dev/TrackAndStore/issues"
},
"homepage": "https://github.com/Murky-dev/TrackAndStore#readme",
"devDependencies": {
"@eslint/js": "^9.39.1",
"@eslint/json": "^0.14.0",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"globals": "^16.5.0",
"jest": "^30.2.0",
"prettier": "3.7.3"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"postgres": "^3.4.7"
}
}