Initial commit
This commit is contained in:
120
website/package.json
Normal file
120
website/package.json
Normal file
@@ -0,0 +1,120 @@
|
||||
{
|
||||
"name": "dar-website",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"auto-bind2": "^1.0.2",
|
||||
"eventemitter3": "^2.0.3",
|
||||
"immutability-helper": "^2.3.0",
|
||||
"moment": "^2.18.1",
|
||||
"papaparse": "^4.3.3",
|
||||
"prop-types": "^15.5.10",
|
||||
"rc-datepicker": "^5.0.7",
|
||||
"react": "^16.2.0",
|
||||
"react-data-grid": "^2.0.51",
|
||||
"react-data-grid-addons": "^2.0.55",
|
||||
"react-dom": "^16.2.0",
|
||||
"react-router-dom": "^4.1.1",
|
||||
"regexp-pattern": "^1.0.4",
|
||||
"semantic-ui-css": "^2.2.10",
|
||||
"semantic-ui-react": "^0.70.0",
|
||||
"socket.io-client": "^2.0.3",
|
||||
"xlsx": "^0.11.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"autoprefixer": "7.1.0",
|
||||
"babel-core": "6.24.1",
|
||||
"babel-eslint": "7.2.3",
|
||||
"babel-jest": "20.0.3",
|
||||
"babel-loader": "7.0.0",
|
||||
"babel-preset-react-app": "^3.0.1",
|
||||
"babel-runtime": "6.23.0",
|
||||
"case-sensitive-paths-webpack-plugin": "1.1.4",
|
||||
"chalk": "1.1.3",
|
||||
"css-loader": "0.28.1",
|
||||
"dotenv": "4.0.0",
|
||||
"dotenv-expand": "^4.2.0",
|
||||
"eslint": "3.19.0",
|
||||
"eslint-config-react-app": "^1.0.5",
|
||||
"eslint-config-standard": "^10.2.1",
|
||||
"eslint-config-standard-react": "^5.0.0",
|
||||
"eslint-loader": "1.7.1",
|
||||
"eslint-plugin-babel": "^4.1.1",
|
||||
"eslint-plugin-flowtype": "2.33.0",
|
||||
"eslint-plugin-import": "2.2.0",
|
||||
"eslint-plugin-jsx-a11y": "5.0.3",
|
||||
"eslint-plugin-node": "^5.1.0",
|
||||
"eslint-plugin-promise": "^3.5.0",
|
||||
"eslint-plugin-react": "7.0.1",
|
||||
"eslint-plugin-standard": "^3.0.1",
|
||||
"extract-text-webpack-plugin": "2.1.0",
|
||||
"file-loader": "0.11.1",
|
||||
"fs-extra": "3.0.1",
|
||||
"html-webpack-plugin": "2.28.0",
|
||||
"jest": "20.0.3",
|
||||
"node-sass": "^4.7.2",
|
||||
"object-assign": "4.1.1",
|
||||
"postcss-flexbugs-fixes": "3.0.0",
|
||||
"postcss-loader": "2.0.5",
|
||||
"promise": "7.1.1",
|
||||
"raf": "^3.4.0",
|
||||
"react-dev-utils": "^5.0.0",
|
||||
"react-error-overlay": "^1.0.9",
|
||||
"sass-loader": "^6.0.6",
|
||||
"style-loader": "^0.17.0",
|
||||
"sw-precache-webpack-plugin": "0.9.1",
|
||||
"url-loader": "0.5.8",
|
||||
"webpack": "^2.7.0",
|
||||
"webpack-dev-server": "^2.11.1",
|
||||
"webpack-manifest-plugin": "1.1.0",
|
||||
"whatwg-fetch": "2.0.3"
|
||||
},
|
||||
"scripts": {
|
||||
"start": "node scripts/start.js",
|
||||
"build": "node scripts/build.js",
|
||||
"lint": "eslint --ext .js --ext .jsx src/",
|
||||
"lint:fix": "eslint --ext .js --ext .jsx --fix src/"
|
||||
},
|
||||
"proxy": {
|
||||
"/api": {
|
||||
"target": "http://localhost:3001",
|
||||
"ws": true,
|
||||
"pathRewrite": {
|
||||
"^/api": ""
|
||||
}
|
||||
}
|
||||
},
|
||||
"jest": {
|
||||
"collectCoverageFrom": [
|
||||
"src/**/*.{js,jsx}"
|
||||
],
|
||||
"setupFiles": [
|
||||
"<rootDir>/config/polyfills.js"
|
||||
],
|
||||
"testMatch": [
|
||||
"<rootDir>/src/**/__tests__/**/*.js?(x)",
|
||||
"<rootDir>/src/**/?(*.)(spec|test).js?(x)"
|
||||
],
|
||||
"testEnvironment": "node",
|
||||
"testURL": "http://localhost",
|
||||
"transform": {
|
||||
"^.+\\.(js|jsx)$": "<rootDir>/node_modules/babel-jest",
|
||||
"^.+\\.css$": "<rootDir>/config/jest/cssTransform.js",
|
||||
"^(?!.*\\.(js|jsx|css|json)$)": "<rootDir>/config/jest/fileTransform.js"
|
||||
},
|
||||
"transformIgnorePatterns": [
|
||||
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
|
||||
],
|
||||
"moduleNameMapper": {
|
||||
"^react-native$": "react-native-web"
|
||||
}
|
||||
},
|
||||
"babel": {
|
||||
"presets": [
|
||||
"react-app"
|
||||
]
|
||||
},
|
||||
"eslintConfig": {
|
||||
"extends": "react-app"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user