This repository has been archived by the owner on Jan 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
114 lines (114 loc) · 3.4 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
105
106
107
108
109
110
111
112
113
114
{
"name": "heutagogy-chrome-extension",
"version": "0.1.0",
"description": "Heutagogy chrome extension",
"scripts": {
"dev": "node scripts/dev",
"build": "node scripts/build",
"compress": "node scripts/compress",
"compress-keygen": "crx keygen",
"webstore-upload": "node scripts/webstore-upload",
"clean": "rimraf build/ dev/ dist/",
"lint": "eslint app chrome test scripts webpack/*.js",
"test": "cross-env NODE_ENV=test mocha -r ./test/setup-app test/app"
},
"repository": {
"type": "git",
"url": "https://github.com/heutagogy/heutagogy-chrome-extension.git"
},
"keywords": [
"heutagogy",
"chrome",
"extension",
"react",
"redux",
"hot reload",
"webpack"
],
"license": "AGPL-3.0",
"devDependencies": {
"adm-zip": "~0.4.7",
"babel-core": "~6.21.0",
"babel-eslint": "~7.1.1",
"babel-loader": "~6.2.10",
"babel-plugin-add-module-exports": "~0.2.1",
"babel-plugin-transform-decorators-legacy": "~1.3.4",
"babel-plugin-transform-runtime": "~6.15.0",
"babel-plugin-webpack-loaders": "~0.8.0",
"babel-preset-es2015": "~6.18.0",
"babel-preset-react": "~6.16.0",
"babel-preset-react-hmre": "~1.1.1",
"babel-preset-react-optimize": "~1.0.1",
"babel-preset-stage-0": "~6.16.0",
"babel-runtime": "~6.20.0",
"chai": "~3.5.0",
"chrome-webstore-upload": "~0.2.1",
"cross-env": "~3.1.4",
"crx": "~3.2.1",
"crx-webpack-plugin": "~0.1.5",
"css-loader": "~0.25.0",
"enzyme": "~2.7.0",
"eslint": "~3.10.2",
"eslint-config-airbnb": "~12.0.0",
"eslint-config-hardcore-react": "~0.1.8",
"eslint-plugin-import": "~1.16.0",
"eslint-plugin-jsx-a11y": "~2.2.3",
"eslint-plugin-react": "~6.7.1",
"httpolyglot-webpack-server": "~0.2.5",
"jsdom": "~9.2.1",
"less": "~2.7.1",
"less-loader": "~2.2.3",
"minimist": "~1.2.0",
"mocha": "~3.1.2",
"postcss-loader": "~1.1.0",
"pug-cli": "~1.0.0-alpha6",
"react-addons-test-utils": "~15.4.1",
"rimraf": "~2.4.3",
"shelljs": "~0.7.0",
"sinon": "~1.17.1",
"sinon-chrome": "~2.1.2",
"style-loader": "~0.13.1",
"stylelint-webpack-plugin": "~0.4.0",
"webpack": "~2.2.0",
"webpack-hot-middleware": "~2.12.2"
},
"dependencies": {
"autoprefixer": "~6.6.1",
"babel-plugin-transform-react-jsx-source": "~6.9.0",
"bluebird": "~3.4.7",
"classnames": "~2.2.5",
"eslint-plugin-fp": "~2.2.0",
"file-loader": "~0.9.0",
"immutable": "~3.8.1",
"jed": "~1.1.1",
"json-loader": "~0.5.4",
"material-design-icons": "~3.0.1",
"material-icons": "~0.1.0",
"material-ui": "~0.16.6",
"moment": "~2.17.1",
"normalizr": "~2.3.1",
"pure-render-decorator": "~1.2.1",
"radium": "~0.18.1",
"react": "~15.4.1",
"react-chrome-redux": "~1.3.0",
"react-dock": "~0.2.3",
"react-dom": "~15.4.1",
"react-ga": "~2.1.2",
"react-redux": "~4.4.6",
"react-tap-event-plugin": "~2.0.0",
"redux": "~3.6.0",
"redux-api-middleware": "~1.0.2",
"redux-devtools": "~3.3.1",
"redux-devtools-dock-monitor": "~1.1.1",
"redux-devtools-log-monitor": "~1.1.1",
"redux-form": "~6.4.3",
"redux-immutablejs": "~0.0.8",
"redux-logger": "~2.7.4",
"redux-saga": "~0.13.0",
"redux-thunk": "~2.1.0",
"redux-watch": "~1.1.1",
"reselect": "~2.5.4",
"stylelint-webpack-plugin": "~0.4.2",
"url-loader": "~0.5.7"
}
}