-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.71 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
52
{
"name": "foosball-rating",
"version": "1.0.0",
"description": "Foosball Rating App",
"main": "index.js",
"scripts": {
"start": "PORT=3001 REACT_APP_POST_URL_PORT=3000 ./scripts/start.sh",
"lint": "eslint --max-warnings 0 './backend/**/*.ts' './frontend/src/**/*.js' --ignore-pattern '**/node_modules/*'",
"start:e2e": "concurrently \"npm --prefix backend start\" \"wait-on http://localhost:3000/games && npm --prefix frontend run start:e2e\"",
"install:children": "concurrently \"npm --prefix backend install\" \"npm --prefix frontend install\"",
"cypress": "cypress open",
"heroku-postbuild": "./scripts/heroku-postbuild.sh",
"heroku-start": "./scripts/start.sh"
},
"engines": {
"node": "16.10.*",
"npm": "^7"
},
"repository": {
"type": "git",
"url": "git+https://github.com/salsita/foosball-rating.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/salsita/foosball-rating/issues"
},
"homepage": "https://github.com/salsita/foosball-rating#readme",
"dependencies": {
"pg": "^7.18.1",
"serve": "^10.1.2",
"concurrently": "^5.1.0"
},
"devDependencies": {
"@cypress/browserify-preprocessor": "^2.2.1",
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/parser": "^2.6.1",
"babel-eslint": "10.0.3",
"cypress": "^4.3.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-mocha": "^6.2.2",
"eslint-plugin-react": "^7.12.4",
"tsify": "^4.0.1",
"typescript": "^3.8.3",
"wait-on": "^4.0.1"
}
}