-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.43 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
69
70
71
72
73
74
75
76
77
{
"name": "gamedao-battlepass",
"version": "0.5.0",
"description": "GameDAO Battlepass",
"author": "GameDAO",
"license": "Apache-2.0",
"main": "src/index.ts",
"scripts": {
"dev": "concurrently -k -c auto -n dev: 'npm run dev:*'",
"dev:service": "npx nodemon src/index.ts",
"dev:chain": "npx nodemon src/chain/index.ts",
"dev:graph": "npx nodemon src/graph/server.ts",
"dev:discord": "npx nodemon src/discord/index.ts",
"dev:twitter": "npx nodemon src/twitter/index.ts",
"dev:epicGames": "npx nodemon src/epicgames/index.ts",
"db": "docker run --name battlepass-dev -e POSTGRES_PASSWORD=postgres123 -d postgres",
"service": "node lib/index.js",
"discord": "node lib/discord/index.js",
"twitter": "node lib/twitter/index.js",
"epicGames": "node lib/epicgames/index.js",
"chain": "node lib/chain/index.js",
"graph": "node lib/graph/server.js",
"generate-api-key": "node lib/getApiToken.js",
"format": "prettier --parser babel-ts --write 'src/**/*.{ts,tsx}'",
"format:verify": "prettier --parser babel-ts --check 'src/**/*.{ts,tsx}'",
"format:staged": "pretty-quick --staged --pattern 'src/**/*.{ts,tsx}'",
"test": "npx jest --detectOpenHandles --maxWorkers=1 ./src/tests"
},
"dependencies": {
"@polkadot/api": "^9.10.5",
"@polkadot/api-augment": "^9.10.5",
"@prisma/client": "^5.14.0",
"bullmq": "^3.7.1",
"cors": "^2.8.5",
"discord.js": "^14.7.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"graphql-request": "^5.1.0",
"joi": "^17.7.0",
"jsonwebtoken": "^9.0.0",
"pg": "^8.8.0",
"sequelize": "^6.28.0",
"sqlite3": "^5.1.4",
"twitter-api-sdk": "^1.2.1",
"typescript": "^4.9.4",
"uuid": "^9.0.0",
"winston": "^3.8.2"
},
"devDependencies": {
"@jest/globals": "^29.3.1",
"@types/express": "^4.17.15",
"@types/jsonwebtoken": "^9.0.0",
"@types/supertest": "^2.0.12",
"apollo-server-express": "^3.11.1",
"concurrently": "^7.6.0",
"husky": "^8.0.3",
"jest": "^29.3.1",
"lint-staged": "^13.1.0",
"nodemon": "^2.0.20",
"prettier": "^2.8.3",
"pretty-quick": "^3.1.3",
"prisma": "^5.14.0",
"rimraf": "^4.0.7",
"sequelize-cli": "^6.6.0",
"supertest": "^6.3.3",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "npm run format:staged"
}
}