-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.79 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "wer1-backend",
"version": "1.0.0",
"description": "WeR1 backend",
"main": "index.js",
"scripts": {
"test": "npm run generate && jest",
"dev": "ts-node-dev --transpile-only --no-notify --exit-child src/index.ts",
"generate": "ts-node --transpile-only src/schema.ts",
"migrate:deploy": "prisma migrate deploy",
"db:seed": "ts-node src/seed.ts",
"build": "prisma generate && npm run generate && tsc --build",
"start": "node dist/src/index.js",
"export:env": "set -o allexport; source .env; set +o allexport"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SrMoffat/wer1-backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/SrMoffat/wer1-backend/issues"
},
"homepage": "https://github.com/SrMoffat/wer1-backend#readme",
"dependencies": {
"@prisma/client": "^5.0.0",
"apollo-server": "^3.1.1",
"axios": "^1.4.0",
"bcryptjs": "~2.4.0",
"graphql": "^16.7.1",
"jsonwebtoken": "~8.5.0",
"lodash": "^4.17.21",
"nexus": "^1.1.0",
"querystring": "^0.2.1",
"typescript": "^5.1.6",
"xml2js": "^0.6.0",
"yup": "^1.2.0"
},
"devDependencies": {
"@faker-js/faker": "^8.0.2",
"@types/bcryptjs": "~2.4.0",
"@types/jest": "^29.5.3",
"@types/jsonwebtoken": "~8.5.0",
"@types/lodash": "^4.14.195",
"@types/node": "^20.4.1",
"@types/xml2js": "^0.4.11",
"get-port": "5.1.1",
"graphql-request": "^6.1.0",
"jest": "^29.6.1",
"prisma": "^5.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0"
},
"jest": {
"preset": "ts-jest",
"globals": {
"ts-jest": {
"diagnostics": {
"warnOnly": true
}
}
},
"testEnvironment": "node"
}
}