-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (41 loc) · 1.13 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
{
"name": "programming-jubilee",
"version": "1.0.0",
"description": "",
"engines": {
"node": "16.x"
},
"main": "server/server.js",
"scripts": {
"start": "node server/server.js",
"develop": "concurrently \"cd server && npm run watch\" \"cd client && npm start\"",
"install": "cd server && npm i && cd ../client && npm i",
"seed": "cd server && npm run seed",
"build": "cd client && npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^7.0.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"prettier": "^2.1.2"
},
"dependencies": {
"@apollo/client": "^3.7.2",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@fortawesome/free-solid-svg-icons": "^6.2.1",
"@heroicons/react": "^1.0.6",
"@mui/icons-material": "^5.11.0",
"bootstrap": "^4.6.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jwt-decode": "^3.1.2",
"react": "^17.0.1",
"react-bootstrap": "^0.32.4",
"react-dom": "^17.0.1",
"react-router-dom": "^6.4.5",
"react-spotify-web-playback": "^0.10.0"
}
}