-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 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
40
41
42
43
44
45
46
47
48
{
"name": "usiran-data-store",
"version": "1.0.0",
"description": "Primary data store for the US-Iran project",
"repository": {
"type": "git",
"url": "https://github.com/mitaai/usiran-data-store.git"
},
"engines": {
"node": "14.x"
},
"scripts": {
"build": "NEXUS_SHOULD_GENERATE_ARTIFACTS=true npm run nexus:reflect && tsc",
"start": "NODE_ENV=production node .nexus/build/api.js",
"dev": "ts-node-dev --debug --transpile-only ./api.ts",
"dev:typecheck": "tsc --noEmit --watch",
"nexus:reflect": "NEXUS_SHOULD_EXIT_AFTER_REFLECTION=true ts-node --transpile-only api.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@prisma/cli": "^2.14.0",
"@types/bcrypt": "^3.0.0",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.9",
"@types/express-pino-logger": "^4.0.2",
"@types/jsonwebtoken": "^8.5.0",
"@types/pino-http": "^5.0.6",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.8",
"typescript": "^4.1.3"
},
"dependencies": {
"@prisma/client": "^2.14.0",
"@types/pino": "^6.3.5",
"apollo-server-express": "^2.19.1",
"apollo-server-plugin-base": "^0.10.3",
"bcrypt": "^5.0.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"graphql": "^15.4.0",
"graphql-scalars": "^1.7.0",
"jsonwebtoken": "^8.5.1",
"nexus": "^1.0.0",
"nexus-plugin-prisma": "^0.28.0"
}
}