-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.21 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
{
"name": "rd-book-store",
"version": "1.0.0",
"engines": {
"node": "7.0.0",
"npm": "3.10.8"
},
"description": "An book store based on Google Books API",
"main": "src/js/index.js",
"scripts": {
"start": "NODE_ENV=production ./node_modules/webpack/bin/webpack.js -p --config ./webpack.production.config.js && node server.js",
"watch": "webpack-dev-server --progress --colors --hot --inline",
"build": "NODE_ENV=production webpack -p --config ./webpack.production.config.js",
"test": "jest"
},
"jest": {
"transform": {
".*": "./node_modules/babel-jest"
},
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "./__mocks__/fileMock.js",
"\\.(css|less)$": "identity-obj-proxy"
},
"unmockedModulePathPatterns": [
"node_modules/react/",
"node_modules/enzyme/"
]
},
"author": "Pablo Darde",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.14.0",
"babel-jest": "^18.0.0",
"babel-loader": "^6.2.5",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.22.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.26.1",
"enzyme": "^2.8.0",
"eslint": "^3.7.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-loader": "^1.5.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.3.0",
"express": "^4.14.0",
"file-loader": "^0.9.0",
"identity-obj-proxy": "^3.0.0",
"img-loader": "^1.3.1",
"jest": "^19.0.2",
"less": "^2.7.2",
"less-loader": "^2.2.3",
"react-addons-test-utils": "^15.5.0",
"react-test-renderer": "^15.5.3",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.14.0"
},
"dependencies": {
"axios": "^0.15.3",
"material-ui": "^0.17.1",
"react": "^15.5.0",
"react-dom": "^15.4.2",
"react-redux": "^5.0.2",
"react-router": "^3.0.2",
"react-tap-event-plugin": "^2.0.1",
"redux": "^3.6.0",
"redux-saga": "^0.14.3"
},
"repository": {
"type": "git",
"url": "https://github.com/darde/RD-Book-Store.git"
}
}