-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
104 lines (104 loc) · 2.85 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
101
102
103
104
{
"name": "audible-tabs",
"version": "0.0.4",
"description": "Manage all of your audible tabs",
"scripts": {
"dev-r": "node scripts/devReloadable",
"dev-s": "node scripts/devStatic",
"build": "node scripts/build",
"compress": "node scripts/compress",
"compress-keygen": "crx keygen",
"clean": "rimraf build/ dev/ *.zip *.crx",
"lint": "eslint app chrome test scripts webpack/*.js",
"test-e2e": "cross-env NODE_ENV=test mocha -r ./test/setup-app test/e2e",
"test": "cross-env NODE_ENV=test mocha -r ./test/setup-app test/app"
},
"repository": {
"type": "git",
"url": "https://github.com/ashwinGokhale/AudibleTabs.git"
},
"keywords": [
"chrome",
"audible",
"tabs",
"extension",
"react",
"redux",
"hot reload",
"webpack",
"boilerplate"
],
"author": "Ashwin Gokhale",
"license": "MIT",
"devDependencies": {
"@types/react-addons-test-utils": "^0.14.21",
"babel-core": "^6.26.3",
"babel-eslint": "^7.1.0",
"babel-loader": "^7.1.5",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-decorators-legacy": "^1.2.0",
"babel-plugin-transform-runtime": "^6.5.2",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-react-optimize": "^1.0.1",
"babel-preset-stage-0": "^6.3.13",
"babel-runtime": "^6.3.19",
"chai": "^3.2.0",
"chromedriver": "^2.33.2",
"cross-env": "^3.1.3",
"crx": "^3.0.3",
"css-loader": "^1.0.0",
"css-modules-require-hook": "^4.2.3",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.10.0",
"eslint-plugin-unicorn": "^6.0.1",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.11",
"jsdom": "^9.2.1",
"minimist": "^1.2.0",
"mocha": "^3.1.2",
"node-sass": "^4.9.1",
"postcss-loader": "^2.1.6",
"prettier": "^1.15.1",
"pug-cli": "^1.0.0-alpha6",
"react-test-renderer": "^16.4.1",
"redux-devtools-extension": "^2.13.2",
"redux-logger": "^3.0.6",
"rimraf": "^2.4.3",
"sass-loader": "^7.0.3",
"selenium-webdriver": "^2.47.0",
"shelljs": "^0.7.0",
"sinon": "^1.17.1",
"style-loader": "^0.13.1",
"url-loader": "^1.0.1",
"webpack": "^4.15.1",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4"
},
"dependencies": {
"autoprefixer": "^7.2.5",
"bluebird": "^3.3.4",
"bootstrap": "^4.1.3",
"jquery": "^3.3.1",
"prop-types": "^15.6.2",
"react": "^16.6.1",
"react-bootstrap": "^0.31.0",
"react-dom": "^16.6.1",
"react-fontawesome": "^1.6.1",
"react-redux": "^5.1.0",
"react-transition-group": "^1.1.3",
"react-uikit": "^0.1.1",
"react-uikit-base": "^2.0.2",
"react-uikit-button": "^2.0.2",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"uikit": "^2.27.4",
"uuid": "^3.3.2",
"valid-url": "^1.0.9"
}
}