-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.02 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.02 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
{
"name": "drive-the-vote",
"private": true,
"dependencies": {
"prop-types": "^15.6.2",
"react": "^16.4.2",
"react-addons-css-transition-group": "^15.6.2",
"react-dom": "^16.4.2",
"react-redux": "^4.4.5",
"react-router": "^3.2.1",
"react-router-redux": "^4.0.5",
"redux": "^3.5.2",
"redux-logger": "^2.6.1",
"redux-promise-middleware": "^5.1.1",
"redux-router": "^2.1.2",
"redux-thunk": "^2.1.0"
},
"devDependencies": {
"@rails/webpacker": "3.5.5",
"babel-core": "^6.26.3",
"babel-eslint": "6.1.2",
"babel-jest": "^23.4.2",
"babel-loader": "^7.1.5",
"babel-plugin-syntax-trailing-function-commas": "6.8.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-react-constant-elements": "6.9.1",
"babel-plugin-transform-runtime": "6.12.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "6.11.6",
"compression-webpack-plugin": "^1.1.11",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"eslint": "4.19.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-react": "^7.11.1",
"fetch-mock": "^7.0.0-alpha.6",
"html-webpack-plugin": "2.22.0",
"jest": "^23.5.0",
"prettier": "^1.14.2",
"rails-erb-loader": "^3.2.0",
"react-test-renderer": "^16.4.2",
"redux-mock-store": "^1.5.3",
"regenerator-runtime": "^0.12.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "2.11.2",
"webpack-merge": "^4.1.0"
},
"scripts": {
"lint": "eslint ./app/javascript/driving",
"lint:fix": "eslint --fix ./app/javascript/driving/",
"prettier": "prettier --single-quote --trailing-comma es5 --write './app/javascript/driving/**/*.js'",
"test": "jest --verbose",
"test:watch": "jest --verbose --watch"
},
"jest": {
"setupTestFrameworkScriptFile": "./app/javascript/driving/utilities/test.setup.js"
}
}