-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 737 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 737 Bytes
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
{
"name": "hackerfit",
"version": "1.0.0",
"description": "",
"main": "server/server.js",
"scripts": {
"start": "node server/server.js --ignore client",
"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"
},
"author": "",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^10.4.14",
"concurrently": "^5.3.0",
"postcss": "^8.4.21",
"tailwindcss": "^3.2.7"
},
"dependencies": {
"@apollo/server": "^4.5.0",
"apollo-server-express": "^3.12.0",
"dotenv": "^16.0.3",
"react-icons": "^4.8.0"
}
}