Skip to content
This repository has been archived by the owner on Apr 12, 2022. It is now read-only.

Commit

Permalink
Only Tom Cruise knows why.
Browse files Browse the repository at this point in the history
  • Loading branch information
nicodinh committed Feb 19, 2020
1 parent c6a0884 commit b8fb79e
Show file tree
Hide file tree
Showing 3 changed files with 5,925 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
/node_modules
/build
.DS_Store
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.next/
cypress/screenshots
cypress/videos
coverage
.env
pushSignedCommit.sh
32 changes: 32 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"name": "lifeinaweb",
"version": "1.0.0",
"license": "MIT",
"private": false,
"repository": "[email protected]:Lifeina/lifeinaweb.git",
"author": {
"name": "Nicolas Azari Nadjafabad",
"email": "[email protected]"
},
"maintainers": [
{
"name": "Nicolas Azari Nadjafabad",
"email": "[email protected]"
}
],
"main": "pages/index.js",
"scripts": {
"dev": "NODE_ENV=development NEXT_TELEMETRY_DISABLED=1 next -p 3000",
"build": "NODE_ENV=production NEXT_TELEMETRY_DISABLED=1 next build",
"start": "NODE_ENV=production next start -p 3000"
},
"dependencies": {
"next": "latest",
"prop-types": "^15.7.2",
"react": "latest",
"react-dom": "latest"
},
"devDependencies": {

}
}
Loading

0 comments on commit b8fb79e

Please sign in to comment.