-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 938 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 938 Bytes
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
{
"name": "fitnessapp",
"version": "1.0.0",
"engines": {
"node": ">=16.0.0"
},
"description": "Testing assigments for Backend developer interview",
"main": "src/index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "cross-env TS_NODE_FILES=true TS_NODE_TRANSPILE_ONLY=true node -r ts-node/register src/index.ts",
"seed": "cross-env TS_NODE_FILES=true TS_NODE_TRANSPILE_ONLY=true node -r ts-node/register src/seed.ts",
"lint": "echo \"Error: no lint specified\" && exit 1",
"type-check": "echo \"Error: no check specified\" && exit 1"
},
"license": "ISC",
"dependencies": {
"cross-env": "^7.0.2",
"express": "^5.1.0",
"pg": "^8.16.0",
"sequelize": "^6.37.7",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"devDependencies": {
"@types/express": "^5.0.3",
"@types/node": "^22.15.30",
"@types/validator": "^13.15.1"
}
}