-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
88 lines (88 loc) · 2.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "colonyServer",
"version": "1.6.0",
"description": "",
"engines": {
"node": "14.18",
"npm": "^8"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/JoinColony/colonyServer.git"
},
"scripts": {
"build": "NODE_ENV=production ./scripts/build.sh",
"start": "NODE_ENV=production node dist/index.js",
"dev": "ts-node-dev src/index.ts",
"prod": "npm run db:start:prod && npm run db:setup && npm run start",
"test": "jest",
"contracts:start-blockchain-client": "cd lib/colonyNetwork && yarn start:blockchain:client",
"contracts:migrate": "cd lib/colonyNetwork && yarn truffle migrate",
"db:start": "ts-node scripts/db-start.ts",
"db:start:prod": "mongod --fork --logpath logs/mongod.log --dbpath mongo-data --cpu",
"db:console": "mongo",
"db:setup": "ts-node scripts/db-setup.ts",
"db:clean": "ts-node scripts/db-clean.ts",
"typecheck": "tsc --noEmit",
"graphql:typegen": "graphql-codegen",
"contracts:typegen": "typechain --target=ethers --outDir=src/network/contracts 'lib/colonyNetwork/build/contracts/{IColony,IMetaColony,IColonyNetwork,DSToken}.json'"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@graphql-tools/schema": "^8.0.1",
"apollo-datasource-mongo": "git://github.com/rdig/apollo-datasource-mongodb.git#12f6b7977d7a6a874f8c5473e4a70239ce7ee5b1",
"apollo-datasource-rest": "0.8.1",
"apollo-server-express": "2.12.0",
"body-parser": "1.19.0",
"cors": "2.8.5",
"dotenv": "8.2.0",
"etherpass": "1.0.2",
"ethers": "4.0.47",
"express": "4.17.1",
"graphql": "15.0.0",
"graphql-iso-date": "3.6.1",
"graphql-tools": "5.0.1-ffb435a.0",
"jose": "1.26.1",
"linkify-it": "2.2.0",
"mongodb": "3.5.7",
"subscriptions-transport-ws": "^0.9.19",
"uuid": "^8.3.2",
"web3-utils": "1.2.7"
},
"devDependencies": {
"@graphql-codegen/cli": "1.13.3",
"@graphql-codegen/typescript-operations": "1.13.3",
"@graphql-codegen/typescript-resolvers": "1.13.3",
"@shelf/jest-mongodb": "1.1.5",
"@types/express": "4.17.4",
"@types/graphql": "14.5.0",
"@types/jest": "^27.0.0",
"@types/mongodb": "3.5.14",
"@types/node": "13.13.4",
"apollo-datasource": "0.7.0",
"apollo-server-testing": "2.12.0",
"husky": "4.2.5",
"jest": "^27.0.0",
"jest-extended": "0.11.5",
"lint-staged": "10.1.7",
"prettier": "2.0.5",
"ts-jest": "^27.0.0",
"ts-node": "^10.2.0",
"ts-node-dev": "^1.1.0",
"typechain": "1.0.5",
"typechain-target-ethers": "1.0.4",
"typescript": "^4.4.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run typecheck && npm run test"
}
},
"lint-staged": {
"*.ts": "prettier --write"
}
}