-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
65 lines (65 loc) · 1.98 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "csv-simple-search",
"version": "1.0.0",
"description": "Searchable, exportable CSV viewer",
"main": "./src/index.js",
"scripts": {
"build": "webpack --config webpack.build.js --bail -p",
"dev": "webpack & webpack-dev-server --config webpack.config.js --history-api-fallback --hot --inline --progress",
"test-ui": "./node_modules/.bin/wdio",
"deploy": "npm run build && gh-pages -d dist",
"lint": "eslint . --cache"
},
"pre-commit": [
"lint"
],
"private": true,
"dependencies": {
"babel-polyfill": "^6.26.0",
"bootstrap": "^4.3.1",
"lodash": "^4.17.11",
"normalize.css": "^8.0.1",
"papaparse": "^4.6.3",
"raw-loader": "^2.0.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-linkify": "^0.2.2",
"react-spinner": "^0.2.7",
"source-sans-pro": "^2.45.0",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"autoprefixer-core": "^6.0.1",
"autoprefixer-loader": "^3.2.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"clean-webpack-plugin": "^2.0.2",
"copy-webpack-plugin": "^5.0.3",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"file-loader": "^3.0.1",
"gh-pages": "^2.0.1",
"html-webpack-plugin": "^3.2.0",
"json-loader": "^0.5.7",
"pre-commit": "^1.2.2",
"react-hot-loader": "^4.8.4",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"wdio-dot-reporter": "0.0.10",
"wdio-mocha-framework": "^0.6.4",
"wdio-selenium-standalone-service": "0.0.12",
"webdriverio": "^5.8.3",
"webpack": "^4.31.0",
"webpack-dev-server": "^3.3.1",
"webpack-notifier": "^1.7.0"
}
}