-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
37 lines (37 loc) · 1.08 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
{
"name": "expenser",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "16.x"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"start": "cd packages/next && npm run start",
"start:telegram": "cd packages/telegram-server && npm run start",
"dev:next": "cd packages/next && npm run dev",
"dev:telegram": "cd packages/telegram-server && npm run dev",
"lint:next": "cd packages/next && npm run lint",
"lint:telegram": "cd packages/telegram-server && npm run lint",
"lint": "run-p lint:*",
"heroku-publish": "git subtree push --prefix packages/telegram-server heroku master"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cube-root/expenser.git"
},
"author": "Abhijith V <abhijithababhijith@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/cube-root/expenser/issues"
},
"homepage": "https://github.com/cube-root/expenser#readme",
"devDependencies": {
"lerna": "^4.0.0"
},
"dependencies": {
"npm-run-all": "^4.1.5"
}
}