This repository has been archived by the owner on Dec 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·74 lines (74 loc) · 2.47 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
{
"name": "video-social-bookmark-chrome-extension",
"version": "0.0.0",
"description": "Chrome extension for bookmark any video with VideoSocialBookmark",
"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 -r ./test/setup-app test/app",
"test-all": "yarn lint && yarn test && yarn test-e2e",
"test-update": "cross-env NODE_ENV=test mocha --require mocha-snapshots --update -r ./test/setup-app test/app"
},
"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": "^3.9.1",
"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",
"jsdom": "^9.2.1",
"minimist": "^1.2.0",
"mocha": "^3.1.2",
"postcss-loader": "^1.2.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.10.0",
"webpack-hot-middleware": "^2.10.0",
"webpack-httpolyglot-server": "^0.3.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"mocha-snapshots": "^4.1.0"
},
"dependencies": {
"autoprefixer": "^7.2.5",
"axios": "^0.18.0",
"bluebird": "^3.3.4",
"classnames": "^2.1.3",
"prop-types": "^15.6.2",
"react": "^15.0.2",
"react-dock": "^0.2.3",
"react-dom": "^15.0.2",
"react-redux": "^4.3.0",
"redux": "^3.2.1",
"redux-thunk": "^2.0.1",
"redux-token-auth": "^0.19.0",
"styled-components": "^4.0.2"
}
}