-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
81 lines (81 loc) · 2.37 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
{
"name": "chess-browser-extension",
"version": "1.0.0",
"description": "Chess.com Browser Extension",
"scripts": {
"dev": "node scripts/dev",
"build": "node scripts/build",
"devFirefox": "node scripts/devFirefox",
"buildFirefox": "node scripts/buildFirefox",
"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 test/e2e",
"test": "cross-env NODE_ENV=test mocha -r ./test/setup-app test/app"
},
"repository": {
"type": "git",
"url": "https://github.com/ChessCom/browser-extension.git"
},
"keywords": [
"chrome",
"browser",
"extension",
"chess"
],
"author": "Chess.com",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.3.15",
"babel-eslint": "^6.0.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-plugin-webpack-loaders": "^0.7.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-react-hmre": "^1.0.0",
"babel-preset-stage-0": "^6.3.13",
"babel-runtime": "^6.3.19",
"chai": "^3.2.0",
"chromedriver": "^2.19.0",
"co-mocha": "^1.1.2",
"cross-env": "^1.0.7",
"crx": "^3.0.3",
"css-loader": "^0.23.1",
"eslint": "^3.4.0",
"eslint-config-airbnb": "^10.0.1",
"eslint-plugin-import": "^1.6.1",
"eslint-plugin-jsx-a11y": "^2.2.0",
"eslint-plugin-react": "^6.2.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"jade": "^1.11.0",
"jsdom": "^9.2.1",
"minimist": "^1.2.0",
"mocha": "^2.4.5",
"postcss-loader": "^0.9.1",
"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",
"url-loader": "^0.5.7",
"webpack": "^1.13.0",
"webpack-hot-middleware": "^2.10.0",
"webpack-httpolyglot-server": "^0.2.0"
},
"dependencies": {
"classnames": "^2.2.5",
"lodash": "^4.15.0",
"react": "^15.0.2",
"react-color": "^2.2.0",
"react-dock": "^0.2.3",
"react-dom": "^15.0.2",
"reactcss": "^1.0.6",
"xhr": "^2.2.2"
}
}