-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.75 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.75 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "react-webpack-babel-starter",
"version": "0.1.0",
"description": "Starter kit for React, Webpack (with Hot Module Replacement) and Babel.",
"keywords": [
"react",
"webpack",
"babel",
"sass",
"hmr",
"starter",
"boilerplate"
],
"author": "Viktor Persson",
"license": "MIT",
"dependencies": {
"axios": "^0.16.2",
"bootstrap": "^3.3.7",
"create-react-class": "^15.6.0",
"font-awesome": "^4.7.0",
"form-urlencoded": "^2.0.4",
"ionicons": "^3.0.0",
"jquery": "^3.2.1",
"query-string": "^5.0.0",
"react": "^15.6.1",
"react-bootstrap": "^0.31.2",
"react-dom": "^15.6.1",
"react-router-bootstrap": "^0.24.3",
"react-router-dom": "^4.2.2",
"react-scripts": "1.0.13",
"request": "^2.81.0"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"css-loader": "^0.28.4",
"file-loader": "^0.11.2",
"identity-obj-proxy": "^3.0.0",
"image-webpack-loader": "^3.3.1",
"jest": "^20.0.4",
"jshint": "^2.9.5",
"node-sass": "^4.5.3",
"postcss": "^6.0.0",
"postcss-loader": "^2.0.6",
"react": "^15.6.1",
"react-addons-test-utils": "^15.6.0",
"react-dom": "^15.6.1",
"react-hot-loader": "^3.0.0-beta.7",
"react-redux": "^4.4.6",
"react-router": "^3.0.0",
"redux": "^3.6.0",
"redux-form": "^6.3.2",
"redux-thunk": "^2.1.0",
"resolve-url-loader": "^2.1.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"stylelint": "^8.0.0",
"stylelint-config-standard": "^17.0.0",
"stylelint-webpack-plugin": "^0.9.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.7.1"
},
"scripts": {
"eject": "react-scripts eject",
"lint": "npm run lint:js && npm run lint:sass",
"lint:js": "jshint",
"lint:sass": "stylelint ./src/**/*.scss",
"start": "webpack-dev-server",
"build": "webpack",
"test": "jest --watch --coverage"
},
"jest": {
"moduleFileExtensions": [
"js",
"jsx"
],
"transform": {
"^.+\\.(js|jsx)$": "<rootDir>/config/jest/jest.preprocessor.js"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
],
"testRegex": "/__tests__/.*\\.(js|jsx)$",
"moduleDirectories": [
"node_modules"
],
"moduleNameMapper": {
"^.+\\.(css|scss)$": "identity-obj-proxy",
"^.+\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/config/jest/fileMock.js"
},
"globals": {
"DEVELOPMENT": true,
"FAKE_SERVER": true
}
}
}