-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.46 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
{
"name": "face-the-music",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"postinstall": "(cd client && npm install)",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js",
"deploy:local": "REACT_APP_SERVER_LOCATION=local npm run build && npm start",
"deploy:cloud": "REACT_APP_SERVER_LOCATION=cloud npm run build && ibmcloud cf push face-the-music",
"build": "(cd client && npm run build)",
"generate-cities": "node ./scripts/generateCities.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Team-ARC/face-the-music.git"
},
"author": "Alexander Horsfield <alex.horsfield@filament.ai>",
"license": "ISC",
"bugs": {
"url": "https://github.com/Team-ARC/face-the-music/issues"
},
"homepage": "https://github.com/Team-ARC/face-the-music#readme",
"dependencies": {
"body-parser": "^1.19.0",
"clone": "^2.1.2",
"compression": "^1.7.4",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"csvtojson": "^2.0.10",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"geolib": "^3.2.1",
"method-override": "^3.0.0",
"serverless-http": "^2.4.1"
},
"devDependencies": {
"eslint": "^7.1.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-flowtype": "^5.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.2"
}
}