prisma-starter/package.json
Sambo Chea 0f3746f189
Some checks reported errors
continuous-integration/drone/push Build encountered an error
Add tests and functions
Allow to run jests and add the excepted
Add not resolve yet for the async in tests
2021-03-13 11:27:14 +07:00

25 lines
502 B
JSON

{
"name": "prisma-starter",
"license": "MIT",
"main": "main.ts",
"devDependencies": {
"@types/jest": "^26.0.20",
"jest": "^26.6.3",
"prisma": "2.18.0",
"ts-jest": "^26.5.3",
"ts-node": "9.1.1",
"typescript": "4.2.3"
},
"scripts": {
"dev": "ts-node ./src/main.ts",
"migrate": "prisma migrate dev --name add-profile --preview-feature",
"test": "jest"
},
"dependencies": {
"@prisma/client": "2.18.0"
},
"engines": {
"node": ">=10.0.0"
}
}