-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.09 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.09 KB
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
{
"name": "ClientsDatabase",
"version": "0.1.0",
"private": true,
"main": "config/webpack.dev.js",
"homepage": "http://more-v-kaple.github.io/ClientsDatabase",
"dependencies": {
"axios": "^0.18.0",
"node-sass": "^4.8.3",
"prop-types": "^15.6.0",
"react": "16.4.1",
"react-dom": "16.4.1",
"react-redux": "^5.0.6",
"redux": "4.0.0",
"redux-thunk": "2.3.0",
"reselect": "^3.0.1",
"url-loader": "^1.0.1"
},
"devDependencies": {
"babel-core": "6.24.1",
"babel-eslint": "^8.2.1",
"babel-jest": "^20.0.3",
"babel-loader": "^7.1.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"case-sensitive-paths-webpack-plugin": "^2.1.2",
"css-hot-loader": "^1.3.6",
"css-loader": "^0.28.11",
"eslint": "^4.17.0",
"eslint-import-resolver-webpack": "^0.8.4",
"eslint-loader": "1.7.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.6.1",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "0.11.1",
"gh-pages": "^1.2.0",
"html-beautify-webpack-plugin": "^1.0.4",
"html-webpack-plugin": "^2.28.0",
"jest": "^22.1.4",
"jest-cli": "^22.1.4",
"raw-loader": "^0.5.1",
"react-hot-loader": "^4.0.0-beta.18",
"react-test-renderer": "^16.2.0",
"redux-immutable-state-invariant": "^2.1.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.20.3",
"webpack": "^3.10.0",
"webpack-dev-server": "2.4.5",
"webpack-merge": "^4.1.2",
"webpack-parallel-uglify-plugin": "^1.1.0"
},
"scripts": {
"start": "webpack-dev-server --open --config config/webpack.dev.js",
"build": "webpack -p --config config/webpack.prod.js --progress",
"deploy": "gh-pages -d build",
"test": "jest"
},
"jest": {
"testEnvironment": "node",
"moduleNameMapper": {
"^Redux/(.*)": "<rootDir>/src/redux/$1",
"^Components/(.*)": "<rootDir>/src/components/$1",
"^Utils/(.*)": "<rootDir>/src/utils/$1"
}
}
}