-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 2.41 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
{
"name": "comiz",
"version": "1.1.0",
"description": "Comic viewer",
"main": "index.js",
"scripts": {
"build": "npm run clean && NODE_ENV=production $(npm bin)/webpack --progress --colors --config ./webpack.config.prod.js && cp ./src/index.html ./src/favicon.png ./dist/",
"clean": "rm -rf ./dist",
"lint": "$(npm bin)/eslint --fix 'src/**/*.+(js|jsx)'",
"test": "NODE_ENV=test SERVER_URL='http://localhost:8000' $(npm bin)/mocha --require ./test/setup.js --compilers js:babel-core/register --recursive",
"test:watch": "npm test -- --watch",
"coverage": "$(npm bin)/nyc --extension .jsx npm test",
"coveralls": "$(npm bin)/nyc --extension .jsx --reporter=text-lcov npm test | $(npm bin)/coveralls",
"gh-pages": "git subtree push --prefix dist origin gh-pages"
},
"author": "Ricky Chien <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/rickychien/comiz.git"
},
"readme": "README.md",
"dependencies": {
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-redux": "^5.0.6",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-swipeable": "^4.1.0",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-promise-middleware": "^4.4.1",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-1": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"coveralls": "^3.0.0",
"css-loader": "^0.28.7",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.1",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^16.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"expect": "1.x",
"exports-loader": "^0.6.3",
"express": "^4.13.4",
"imports-loader": "^0.7.1",
"isomorphic-fetch": "^2.2.1",
"jsdom": "^11.3.0",
"mocha": "^4.0.1",
"mock-css-modules": "^1.0.0",
"nock": "^9.0.22",
"nyc": "^11.2.1",
"react-test-renderer": "^16.0.0",
"redux-mock-store": "^1.0.2",
"style-loader": "^0.19.0",
"url-loader": "^0.6.2",
"webpack": "^3.7.1",
"webpack-dev-middleware": "^1.5.1",
"webpack-hot-middleware": "^2.10.0"
}
}