|
| 1 | +{ |
| 2 | + "name": "tableau-sample-web-app", |
| 3 | + "version": "1.0.0", |
| 4 | + "description": "Example of how modern web apps can integrate with Tableau Server", |
| 5 | + "main": "src/server/index.js", |
| 6 | + "scripts": { |
| 7 | + "build": "webpack --mode production", |
| 8 | + "production": "npm run build && node src/server/index.js", |
| 9 | + "client": "webpack-dev-server --mode development --devtool inline-source-map --hot", |
| 10 | + "server": "nodemon src/server/index.js", |
| 11 | + "debug-server": "nodemon --inspect src/server/index.js", |
| 12 | + "dev": "concurrently \"npm run debug-server\" \"npm run client\"", |
| 13 | + "start": "node src/server/index.js", |
| 14 | + "postinstall": "npm run build" |
| 15 | + }, |
| 16 | + "author": "Takashi Binns", |
| 17 | + "license": "ISC", |
| 18 | + "dependencies": { |
| 19 | + "@tableau/tableau-ui": "^3.0.0", |
| 20 | + "axios": "^0.18.0", |
| 21 | + "babel-polyfill": "^6.26.0", |
| 22 | + "crypto-js": "^3.1.9-1", |
| 23 | + "csv-parse": "^4.4.3", |
| 24 | + "csv-writer": "^1.6.0", |
| 25 | + "dotenv": "^8.2.0", |
| 26 | + "express": "^4.16.3", |
| 27 | + "moment": "^2.24.0", |
| 28 | + "ramda": "^0.27.0", |
| 29 | + "react": "^16.5.2", |
| 30 | + "react-bootstrap": "^1.0.0-beta.6", |
| 31 | + "react-dom": "^16.5.2", |
| 32 | + "react-router-dom": "^5.2.0", |
| 33 | + "react-spinkit": "^3.0.0", |
| 34 | + "react-toastify": "^5.1.0", |
| 35 | + "simple-node-logger": "^18.12.24", |
| 36 | + "webpack": "^4.43.0", |
| 37 | + "webpack-cli": "^3.3.12" |
| 38 | + }, |
| 39 | + "devDependencies": { |
| 40 | + "@babel/core": "^7.0.0", |
| 41 | + "@babel/plugin-proposal-class-properties": "^7.0.0", |
| 42 | + "@babel/preset-env": "^7.0.0", |
| 43 | + "@babel/preset-react": "^7.0.0", |
| 44 | + "@fortawesome/fontawesome-free": "^5.8.2", |
| 45 | + "babel-eslint": "^10.0.0", |
| 46 | + "babel-loader": "^8.0.0", |
| 47 | + "clean-webpack-plugin": "^1.0.0", |
| 48 | + "concurrently": "^4.0.0", |
| 49 | + "css-loader": "^2.0.0", |
| 50 | + "eslint": "^5.0.0", |
| 51 | + "eslint-config-airbnb": "^17.0.0", |
| 52 | + "eslint-plugin-import": "^2.11.0", |
| 53 | + "eslint-plugin-jsx-a11y": "^6.0.3", |
| 54 | + "eslint-plugin-react": "^7.7.0", |
| 55 | + "file-loader": "^3.0.0", |
| 56 | + "html-webpack-plugin": "^3.2.0", |
| 57 | + "nodemon": "^1.17.3", |
| 58 | + "style-loader": "^0.23.0", |
| 59 | + "url-loader": "^1.0.1", |
| 60 | + "webpack-dev-server": "^3.1.3" |
| 61 | + }, |
| 62 | + "engines": { |
| 63 | + "node": "14.x" |
| 64 | + } |
| 65 | +} |
0 commit comments