forked from SumOfUs/Champaign
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.46 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
{
"scripts": {
"precommit": "lint-staged",
"flow": "flow",
"test": "jest",
"test:watch": "jest --watch",
"test:update_snapshot": "jest --updateSnapshot"
},
"lint-staged": {
"*.js": [
"prettier --trailing-comma es5 --single-quote --write",
"git add"
],
"*.{rb,rake}": [
"bundle exec rubocop -a --force-exclusion",
"git add"
]
},
"dependencies": {
"@rails/webpacker": "^3.5.3",
"babel-loader": "^7.1.2",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-preset-react": "^6.24.1",
"backbone": "^1.3.3",
"braintree-web": "^3.32.1",
"c3": "^0.4.18",
"classnames": "^2.2.5",
"clipboard": "^1.7.1",
"cookieconsent": "^3.0.6",
"dotenv": "^4.0.0",
"draft-js": "^0.10.5",
"draft-js-export-html": "^1.2.0",
"draft-js-import-html": "^1.2.1",
"empty": "^0.10.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.1",
"eventemitter3": "^3.1.0",
"faker": "^4.1.0",
"flow-bin": "^0.52.0",
"husky": "^0.14.3",
"intl": "^1.2.5",
"ismobilejs": "^0.4.1",
"jest": "^22.3.0",
"jquery": "^3.3.1",
"jquery-sticky": "^1.0.4",
"jquery-typeahead": "^2.10.4",
"jquery-ui": "^1.12.1",
"jquery-ujs": "^1.2.2",
"js-cookie": "^2.2.0",
"js-yaml": "^3.10.0",
"libphonenumber-js": "^1.0.7",
"lint-staged": "^6.1.0",
"lodash": "^4.17.10",
"mailcheck": "^1.1.1",
"moment": "^2.20.1",
"prettier": "^1.10.2",
"prop-types": "^15.6.0",
"query-string": "^5.0.1",
"raven-js": "^3.24.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-intl": "^2.4.0",
"react-onclickoutside": "^6.7.1",
"react-redux": "^5.0.6",
"react-select": "^1.2.1",
"reactjs-popup": "^1.1.1",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"selectize": "^0.12.4",
"speakingurl": "^14.0.1",
"twitter-text": "^2.0.4",
"urijs": "^1.19.0",
"webpack-dev-server": "^2.11.1",
"yamljs": "^0.3.0"
},
"jest": {
"moduleNameMapper": {
"^.+\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/spec/jest/FileStub.js",
"^.+\\.s?css$": "<rootDir>/spec/jest/CSSStub.js",
"^champaign-i18n$": "<rootDir>/spec/jest/champaign-i18n-stub.js"
},
"roots": [
"<rootDir>/app/javascript"
],
"setupFiles": [
"<rootDir>/spec/jest/setupJest",
"babel-polyfill"
]
}
}