-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
121 lines (121 loc) · 3.79 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "react_rails_starter_app",
"version": "1.0.0",
"description": "React Starter App with Rails. Uses webpacker.",
"author": "atomicjolt",
"license": "MIT",
"homepage": "https://github.com/atomicjolt/react_rails_starter_app",
"scripts": {
"test": "jest --config package.json",
"test_update": "jest -u --config package.json",
"test_debug": "node inspect jest --runInBand --config package.json || SUCCESS=false",
"hot": "./bin/webpack-dev-server",
"lint": "eslint client",
"lint_fix": "eslint client --fix",
"nuke": "rm -rf node_modules",
"inspect_fuel": "\"${EDITOR:-vi}\" ./node_modules/atomic-fuel"
},
"repository": {
"type": "git",
"url": "https://github.com/atomicjolt/react_rails_starter_app"
},
"keywords": [
"React",
"Rails",
"Atomic Jolt"
],
"jest": {
"roots": [
"<rootDir>/client"
],
"verbose": true,
"moduleDirectories": [
"node_modules",
"<rootDir>/client"
],
"transform": {
"\\.(gql|graphql)$": "jest-transform-graphql",
".*": "babel-jest"
},
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "./client/testing/__mocks__/file_mock.js",
"\\.(sass|scss|css|less)$": "./client/testing/__mocks__/style_mock.js"
},
"setupFilesAfterEnv": [
"./client/testing/shim.js",
"./client/testing/setup_tests.js"
]
},
"dependencies": {
"@apollo/react-hooks": "^4.0.0",
"@apollo/react-testing": "^4.0.0",
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-destructuring": "^7.10.4",
"@babel/plugin-transform-regenerator": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@rails/webpacker": "^4.2.2",
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
"apollo-link": "^1.2.14",
"apollo-link-http": "^1.5.17",
"apollo-link-state": "^0.4.0",
"atomic-fuel": "^4.8.1",
"babel-loader": "^8.1.0",
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-macros": "^2.8.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"babel-preset-es2015": "^6.24.1",
"core-js": "^3.6.5",
"css-loader": "^2.1.1",
"es6-promise": "^4.2.4",
"file-loader": "^4.3.0",
"graphql": "^15.3.0",
"graphql-tag": "^2.11.0",
"history": "^4.10.1",
"lodash": "4.17.20",
"mime": "^2.4.6",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-apollo": "^3.1.5",
"react-dom": "^16.13.1",
"react-proxy-loader": "^0.3.5",
"react-redux": "^7.1.3",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-router3": "npm:[email protected]",
"redux": "4.0.5",
"regenerator-runtime": "^0.13.7",
"sass-loader": "^8.0.0",
"style-loader": "^1.2.1",
"superagent": "^5.2.1",
"uuid": "^3.3.3",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"babel-jest": "^24.9.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.4",
"enzyme-to-json": "^3.5.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^2.3.0",
"eventsource-polyfill": "^0.9.6",
"jest": "^24.9.0",
"jest-transform-graphql": "^2.1.0",
"nock": "^11.7.2",
"react-test-renderer": "^16.13.1",
"wait-for-expect": "^3.0.2",
"webpack-dev-server": "^3.10.1"
}
}