Skip to content

Commit

Permalink
Example package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
yangshun committed Jun 18, 2017
1 parent d1a7393 commit 217dc58
Show file tree
Hide file tree
Showing 3 changed files with 5,832 additions and 0 deletions.
58 changes: 58 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# Typescript v1 declaration files
typings/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env
40 changes: 40 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"name": "grab-front-end",
"version": "0.1.0",
"description": "Libraries, tools and frameworks the Grab front end team uses",
"repository": "[email protected]:grab/front-end-guide.git",
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-redux": "^5.0.5",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.1",
"redux": "^3.7.0",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"autoprefixer": "^7.1.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-polyfill": "^6.23.0",
"babili-webpack-plugin": "^0.1.1",
"css-loader": "^0.28.1",
"enzyme": "^2.8.2",
"eslint": "^4.0.0",
"eslint-loader": "^1.7.1",
"flow-bin": "^0.48.0",
"jest": "^20.0.4",
"node-sass": "^4.5.3",
"postcss-loader": "^2.0.5",
"redux-logger": "^3.0.6",
"sass-loader": "^6.0.5",
"style-loader": "^0.18.2",
"stylelint": "^7.11.1",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5"
}
}
Loading

0 comments on commit 217dc58

Please sign in to comment.