-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.77 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
{
"name": "fomoplayer",
"version": "1.0.0",
"description": "",
"main": "ecosystem.config.js",
"engines": {
"node": "18.x"
},
"scripts": {
"migrate": "yarn workspace fomoplayer_back migrate",
"db-migrate:prod": "yarn workspace fomoplayer_back db-migrate:prod",
"start:back": "yarn workspace fomoplayer_back start",
"start:back:prod": "yarn workspace fomoplayer_back start:prod",
"start:front": "yarn workspace fomoplayer_front start",
"start:prod-front": "yarn workspace fomoplayer_front start:prod",
"start": "concurrently \"yarn run start:back\" \"yarn run start:front\"",
"start:integration-tests": "concurrently \"NODE_ENV=test yarn run start:back\" \"NODE_ENV=test yarn run start:front\"",
"start:prod": "yarn run start:back:prod",
"ci:test": "yarn workspace fomoplayer_back ci:test",
"test": "yarn workspace fomoplayer_back test",
"ui:test": "yarn workspace fomoplayer_integration_tests test",
"ciui:test": "yarn workspace fomoplayer_integration_tests ci:test",
"build": "yarn workspace fomoplayer_front build",
"db:backup": "heroku pg:backups:capture"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gadgetmies/fomoplayer.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/gadgetmies/fomoplayer/issues"
},
"homepage": "https://github.com/gadgetmies/fomoplayer#readme",
"devDependencies": {
"concurrently": "^9.0.0",
"eslint": "^9.16.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"pm2": "^5.2.0",
"prettier": "^3.3.3"
},
"private": true,
"workspaces": [
"packages/**"
]
}