-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
94 lines (94 loc) · 2.71 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"scripts": {
"watch": "./bin/webpack-watcher",
"server": "./bin/webpack-dev-server",
"test": "node frontend/scripts/test.js --env=jsdom",
"lint": "node_modules/eslint/bin/eslint.js frontend"
},
"dependencies": {
"autoprefixer": "^6.7.7",
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.3.2",
"babel-preset-react": "^6.23.0",
"coffee-loader": "^0.7.3",
"coffee-script": "^1.12.4",
"compression-webpack-plugin": "^0.3.2",
"css-loader": "^0.28.0",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"glob": "^7.1.1",
"js-yaml": "^3.8.3",
"material-ui": "^0.17.1",
"node-sass": "^4.5.2",
"path-complete-extname": "^0.1.0",
"postcss-loader": "^1.3.3",
"postcss-smart-import": "^0.6.10",
"precss": "^1.4.0",
"rails-erb-loader": "^5.0.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-tap-event-plugin": "^2.0.1",
"reset-css": "^2.2.0",
"sass-loader": "^6.0.3",
"style-loader": "^0.16.1",
"turbolinks": "^5.0.0",
"webpack": "^2.3.3",
"webpack-manifest-plugin": "^1.1.0",
"webpack-merge": "^4.1.0",
"webpacker-react": "^0.2.1"
},
"devDependencies": {
"babel-eslint": "7.1.1",
"babel-jest": "^19.0.0",
"chalk": "1.1.3",
"detect-port": "1.1.0",
"dotenv": "^4.0.0",
"enzyme": "^2.7.1",
"eslint": "^3.18.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"fs-extra": "0.30.0",
"jest": "18.1.0",
"nightmare": "^2.10.0",
"object-assign": "^4.1.1",
"react-addons-test-utils": "^15.4.2",
"react-dev-utils": "^0.5.2",
"webpack-dev-server": "^2.4.2",
"whatwg-fetch": "2.0.2"
},
"standard": {
"envs": [
"jest"
]
},
"jest": {
"collectCoverageFrom": [
"<rootDir>/frontend/bundles/**/*.{js,jsx}",
"<rootDir>/frontend/src/**/*.{js,jsx}"
],
"setupFiles": [
"<rootDir>/frontend/config/polyfills.js"
],
"testPathIgnorePatterns": [
"<rootDir>[/\\\\](vendor)[/\\\\]",
"<rootDir>/frontend[/\\\\](build|docs|node_modules|scripts|vendor)[/\\\\]"
],
"testEnvironment": "node",
"testURL": "http://localhost",
"transform": {
"^.+\\.(js|jsx)$": "<rootDir>/node_modules/babel-jest",
"^.+\\.css$": "<rootDir>/frontend/config/jest/cssTransform.js",
"^(?!.*\\.(js|jsx|css|json)$)": "<rootDir>/frontend/config/jest/fileTransform.js"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
],
"moduleNameMapper": {
"^react-native$": "react-native-web"
}
}
}