-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 870 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 870 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": "nutrien-be-interview",
"type": "module",
"scripts": {
"build": "rm -rf dist && tsc",
"createSchema": "npx mikro-orm schema:create",
"dev": "tsc-watch --onSuccess 'node ./dist/server.js'",
"freshSeed": "npx mikro-orm schema:fresh --seed -r",
"seed": "npx mikro-orm seeder:run",
"start": "node dist/server.js"
},
"dependencies": {
"@mikro-orm/better-sqlite": "^6.4.0",
"@mikro-orm/core": "^6.4.0",
"@mikro-orm/postgresql": "^6.4.0",
"@mikro-orm/reflection": "^6.4.0",
"@mikro-orm/seeder": "^6.4.0",
"@mikro-orm/sql-highlighter": "^1.0.1",
"@types/express": "^5.0.0",
"express": "^4.21.1",
"papaparse": "^5.4.1"
},
"devDependencies": {
"@mikro-orm/cli": "^6.4.0",
"@types/papaparse": "^5.3.15",
"prettier": "3.4.1",
"tsc-watch": "^6.2.1",
"typescript": "^5.7.2"
}
}