forked from Abhimanyu121/skandha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.54 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
{
"name": "root",
"private": true,
"version": "0.0.3",
"engines": {
"node": ">=12.9.0"
},
"scripts": {
"clean": "rm -rf ./packages/*/lib ./packages/*/*.tsbuildinfo",
"bootstrap": "lerna bootstrap & lerna link",
"build": "yarn workspace types run build && yarn workspace common run build && yarn workspace params run build && yarn workspace executor run build && yarn workspace listener run build && yarn workspace db run build && lerna run build",
"dev": "nodemon --watch 'packages/**/*' --exec \"yarn build && yarn bootstrap && ./skandha --testingMode\"",
"lint": "eslint --color --ext .ts packages/*/src/",
"fix-lint": "eslint --ext .ts --fix packages/*/src/",
"test:unit": "lerna run test:unit --no-bail --concurrency 1",
"check-readme": "learn run check-readme",
"release:publish": "lerna publish from-package --yes --no-verify-access",
"release:docker": "exit 0"
},
"devDependencies": {
"@types/compression": "1.7.2",
"@types/jest": "29.2.3",
"@types/node": "18.11.9",
"@typescript-eslint/eslint-plugin": "5.43.0",
"@typescript-eslint/parser": "5.43.0",
"eslint": "8.27.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.2.1",
"jest": "29.3.1",
"jest-express": "1.12.0",
"lerna": "6.4.1",
"ts-jest": "29.0.3",
"ts-node": "10.9.1",
"tsconfig-paths": "4.1.2",
"typescript": "4.8.4"
},
"license": "MIT",
"workspaces": [
"packages/*"
],
"dependencies": {
"nodemon": "^2.0.22"
}
}