-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
91 lines (91 loc) · 2.56 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
{
"name": "voteex",
"version": "0.1.0",
"description": "VoteEX - Website reputation and review service.",
"scripts": {
"dev": "node scripts/dev",
"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-webpack -r jsdom-global/register test/**/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/baitun/VoteEX.git"
},
"keywords": [
"chrome",
"extension",
"react",
"redux",
"hot reload",
"webpack",
"boilerplate"
],
"license": "MIT",
"devDependencies": {
"babel-core": "^6.3.15",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.0",
"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-hmre": "^1.0.0",
"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": "^0.25.0",
"css-modules-require-hook": "^4.0.5",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.5.0",
"husky": "^2.5.0",
"jsdom": "^15.1.1",
"jsdom-global": "^3.0.2",
"minimist": "^1.2.0",
"mocha": "^3.5.3",
"mocha-webpack": "^1.1.0",
"postcss-loader": "^1.2.1",
"pretty-quick": "^1.11.1",
"pug-cli": "^1.0.0-alpha6",
"react-addons-test-utils": "^15.0.2",
"rimraf": "^2.4.3",
"selenium-webdriver": "^2.47.0",
"shelljs": "^0.7.0",
"sinon": "^1.17.1",
"style-loader": "^0.13.1",
"webpack": "^3.12.0",
"webpack-hot-middleware": "^2.10.0",
"webpack-httpolyglot-server": "^0.3.0"
},
"dependencies": {
"antd": "^3.19.7",
"arweave": "^1.4.0",
"autoprefixer": "^7.2.5",
"bluebird": "^3.3.4",
"classnames": "^2.1.3",
"fluence": "^0.1.26",
"react": "^16.8.6",
"react-dock": "^0.2.3",
"react-dom": "^16.8.6",
"react-redux": "^4.3.0",
"redux": "^3.2.1",
"redux-thunk": "^2.0.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}