-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.4 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
{
"name": "quadrivia",
"version": "1.0.0",
"description": "Spotify music quiz",
"main": "index.js",
"scripts": {
"start": "firebase serve",
"start:functions": "firebase serve --only functions",
"start:hosting": "firebase serve --only hosting",
"start:dev": "REACT_APP_SERVER_LOCATION=local concurrently \"(cd functions && npm run start:dev)\" \"cd client && npm start\"",
"test": "concurrently \"cd server && npm t\" \"cd client && npm t\"",
"lint": "concurrently \"cd server && npm run lint\" \"cd client && npm run lint\"",
"deploy": "npm run build && firebase deploy",
"deploy:client": "npm run build && firebase deploy --only hosting",
"build": "cd client && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Synthesise-Player/quadrivia.git"
},
"author": "CForrest97",
"license": "ISC",
"bugs": {
"url": "https://github.com/Synthesise-Player/quadrivia/issues"
},
"homepage": "https://github.com/Synthesise-Player/quadrivia#readme",
"dependencies": {
"bootstrap": "^4.4.1",
"concurrently": "^5.0.2",
"express": "^4.17.1",
"react-bootstrap": "^1.0.0-beta.16"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0"
}
}