-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
100 lines (100 loc) · 3.05 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"private": true,
"version": "2.0.1",
"scripts": {
"ava": "ava",
"lint": "run-p lint:* --continue-on-error",
"lint:js": "eslint .",
"lint:css": "stylelint 'source/**/*.css'",
"fix": "run-p fix:* --continue-on-error",
"fix:js": "eslint . --fix",
"test": "run-p ava lint:* build",
"fix:css": "stylelint 'source/**/*.css' --fix",
"build": "webpack --mode=production",
"watch": "webpack --mode=development --watch",
"start": "npx web-ext run",
"start:chromium": "npx web-ext run --target=chromium"
},
"dependencies": {
"@babel/runtime": "^7.12.5",
"@xstate/react": "^0.6.1",
"aws-sdk": "^2.756.0",
"cache-polyfill": "^1.0.1",
"classnames": "^2.2.6",
"d3-scale": "^3.2.3",
"dom-loaded": "^1.2.0",
"element-ready": "^3.1.0",
"lodash": "^4.17.11",
"memoize-one": "^5.0.4",
"perfect-scrollbar": "^1.5.0",
"prop-types": "^15.6.2",
"react": "^17.0.2",
"react-clickdrag": "https://github.com/vegetableman/react-clickdrag#b2a8a6ea71e5f977eed94b3d93219810eaf14017",
"react-content-loader": "^3.4.2",
"react-dom": "^17.0.2",
"react-shadow": "^16.3.2",
"react-slick": "^0.23.2",
"react-sparklines": "https://github.com/vegetableman/react-sparklines#989e583f0f58c71d7f5003343400f529f0b3d488",
"react-switch": "^4.1.0",
"react-tabs": "^2.3.0",
"react-tiny-virtual-list": "^2.2.0",
"react-tooltip": "^4.2.5",
"react-transition-group": "^2.9.0",
"slick-carousel": "^1.8.1",
"tinycolor2": "^1.4.1",
"webextension-polyfill": "^0.8.0",
"xstate": "^4.7.8"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/eslint-parser": "^7.12.1",
"@babel/eslint-plugin": "^7.12.1",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"ava": "^3.15.0",
"babel-loader": "^8.2.2",
"browser-env": "^3.3.0",
"chrome-webstore-upload-cli": "^1.2.0",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^1.0.1",
"dotenv-webpack": "^6.0.0",
"eslint": "^7.18.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^2.5.1",
"esm": "^3.2.25",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^2.0.0",
"npm-run-all": "^4.1.5",
"react-dev-utils": "^11.0.4",
"react-hot-loader": "^4.9.0",
"style-loader": "^0.23.1",
"stylelint": "^13.9.0",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^20.0.0",
"stylelint-order": "^4.1.0",
"terser-webpack-plugin": "^4.2.3",
"url-loader": "^1.1.2",
"web-ext": "^6.1.0",
"webpack": "^4.33.0",
"webpack-cli": "^3.3.3"
},
"ava": {
"require": [
"esm",
"./test/_setup-browser-env.js"
]
},
"webExt": {
"sourceDir": "distribution",
"run": {
"startUrl": [
"japantimes.com"
]
}
}
}