-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.25 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
{
"name": "@blacklist/monorepo",
"version": "0.1.0",
"description": "A service and api for ethereum blacklisted addresses",
"author": "Jonathan Evans <[email protected]>",
"private": true,
"scripts": {
"api": "yarn workspace @blacklist/api start",
"api:build": "yarn workspace @blacklist/api build",
"api:integrate": "yarn workspace @blacklist/api integrate",
"service": "yarn workspace @blacklist/service start",
"service:build": "yarn workspace @blacklist/service build",
"service:integration": "yarn workspace @blacklist/service integration",
"lint": "yarn workspace @blacklist/api lint && yarn workspace @blacklist/service lint"
},
"license": "MIT",
"engines": {
"node": ">=16.13.2"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/dotenv": "^8.2.0",
"@types/mocha": "^9.1.0",
"@types/node": "^16.11.22",
"chai": "^4.3.4",
"mocha": "^9.1.3",
"supertest": "^6.2.4",
"ts-node": "^10.7.0",
"tslint": "^6.1.3",
"tslint-no-unused-expression-chai": "^0.1.4",
"typescript": "^4.5.4"
}
}