-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
28 lines (28 loc) · 1.05 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
{
"name": "tic-tac-toe-app",
"version": "1.0.0",
"description": "Tri-platform (iOS, android and web) online multiplayer Tic Tac Toe game, built using React Native, Expo and Firebase.",
"main": "index.js",
"scripts": {
"start": "cd client && yarn start",
"ios": "cd client && yarn ios",
"android": "cd client && yarn android",
"web": "cd client && yarn web",
"build:ios": "cd client && yarn build:ios",
"build:android": "cd client && yarn build:android",
"deploy:web": "cd client && deploy:web",
"deploy:server": "cd server && yarn deploy",
"deploy:landing": "cd landing-page && yarn build && firebase deploy --only hosting"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andordavoti/tic-tac-toe-app.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/andordavoti/tic-tac-toe-app/issues"
},
"homepage": "https://github.com/andordavoti/tic-tac-toe-app#readme"
}