-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 980 Bytes
/
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
{
"name": "lang_assess_back",
"version": "0.0.1",
"description": "lang_assess_back",
"keywords": [],
"author": "Afesoh Brain <brainafesoh@gmail.com>",
"license": "",
"repository": {
"type": "git"
},
"scripts": {
"format": "npx prettier --write './**/*.{ts,md}'",
"dev": "nexus dev",
"build": "nexus build --no-bundle",
"start": "node .nexus/build/",
"test": "jest",
"prisma-migrate-save": "prisma migrate save --experimental",
"prisma-migrate-up": "prisma migrate up --create-db --experimental",
"prisma-seed": "ts-node ./prisma/seed.ts"
},
"dependencies": {
"@cospired/i18n-iso-languages": "^2.1.2",
"cors": "^2.8.5",
"nexus": "0.26.1",
"nexus-plugin-prisma": "0.10.0",
"nexus-plugin-shield": "^0.2.0"
},
"devDependencies": {
"@types/jest": "26.0.0",
"dotenv": "8.2.0",
"jest": "26.0.1",
"prettier": "2.0.5",
"ts-jest": "26.1.0"
},
"engines": {
"node": "12.18.0"
}
}