-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.02 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
40
41
42
{
"name": "yoga2-jwt",
"version": "0.0.1",
"maintainers": [
{
"name": "victor",
"email": "[email protected]"
}
],
"license": "MIT",
"scripts": {
"dev": "yoga dev",
"build": "yoga build",
"build:ci": "npx nexus-prisma-generate --output ./.yoga/nexus-prisma && yarn prisma generate && yoga build",
"start": "yoga start",
"scaffold": "yoga scaffold",
"lint": "echo linting disabled",
"pandora": "pandora start && tail -f ~/logs/pandorajs/daemon_std.log",
"deploy": "prisma deploy"
},
"dependencies": {
"@types/jsonwebtoken": "^8.3.2",
"bcryptjs": "^2.4.3",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"prisma": "^1.34.1",
"prisma-client-lib": "^1.34.1",
"yoga": "0.0.20"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/graphql": "^14.2.2",
"@types/node": "^12.6.2",
"@types/ws": "^6.0.1",
"typescript": "^3.4.5"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "all"
}
}