-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.38 KB
/
package.json
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
{
"name": "transactions_challange",
"version": "1.0.0",
"description": "- Create an SPA that exhibits a page with a table of financial transactions that can be filtered by date range (start month/end month), and a page with the transaction details on click. Use Vue, GraphQL, Prisma (ORM) & Postgres. Use TypeScript in the back-end. No need for any styling on the page. A CSV file with the transactions is attached to this email. Submit a Github repo link with the result.",
"main": "index.js",
"prisma": {
"seed": "ts-node prisma/seed.ts",
"schema": "prisma/schema.prisma"
},
"dependencies": {
"@prisma/client": "^2.23.0",
"apollo-server": "^3.6.7",
"graphql": "^16.3.0"
},
"devDependencies": {
"@types/node": "^15.14.9",
"prisma": "^2.30.3",
"ts-node": "^10.7.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.6.3"
},
"scripts": {
"init": "npx prisma migrate dev --name init",
"seed": "ts-node prisma/seed.ts",
"dev": "ts-node-dev src/server.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jsb989/transactions_challange.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jsb989/transactions_challange/issues"
},
"homepage": "https://github.com/jsb989/transactions_challange#readme"
}