-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.7 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
{
"name": "impactmarket",
"version": "1.11.2",
"description": "Human Empowerment Protocol.",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/impactMarket/backend.git"
},
"author": "impact-market",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/impactMarket/backend/issues"
},
"homepage": "https://github.com/impactMarket/backend#readme",
"engines": {
"node": "18.x"
},
"workspaces": [
"packages/*",
"services/*"
],
"devDependencies": {
"lerna": "^8.0.0",
"eslint-config-impact-market": "2.3.0"
},
"scripts": {
"dev": "lerna exec --scope @impactmarket/api yarn dev",
"dev:worker": "lerna exec --scope @impactmarket/worker yarn dev",
"start": "node --require './packages/api/appsignal.cjs' packages/api/dist/app.js",
"worker": "node packages/worker/dist/index.js",
"build": "lerna exec --scope @impactmarket/api --scope @impactmarket/core --scope @impactmarket/worker yarn build",
"test": "lerna exec --concurrency 1 yarn test",
"precoverage:ci": "NODE_ENV=test sequelize db:migrate --env ci",
"coverage:ci": "nyc --reporter=lcov lerna exec --concurrency 1 yarn test",
"prettier:dryrun": "lerna exec --scope @impactmarket/api --scope @impactmarket/core yarn prettier:dryrun",
"eslint:dryrun": "lerna exec --scope @impactmarket/api --scope @impactmarket/core yarn eslint:dryrun",
"prettier": "lerna exec --scope @impactmarket/api --scope @impactmarket/core yarn prettier",
"eslint": "lerna exec --scope @impactmarket/api --scope @impactmarket/core yarn eslint"
}
}