-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
81 lines (81 loc) · 2.3 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
{
"name": "repocompare",
"version": "0.1.0",
"description": "A React powered single page application that you can easily compare Github repositories.",
"scripts": {
"start": "webpack-dev-server --mode development --hot --inline --progress --colors --watch",
"build": "webpack --mode production",
"test": "jest",
"test:watch": "npm test -- --watch",
"lint": "eslint --ext .jsx --ext .js app",
"lint:fix": "npm run lint -- --fix",
"webpack-stats": "webpack --json > stats.json"
},
"repository": {
"type": "git",
"url": "https://github.com/tsevdos/react-boilerplate"
},
"author": "John Tsevdos <[email protected]> (http://tsevdos.me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/tsevdos/repocompare/issues"
},
"homepage": "http://repocompare.io",
"devDependencies": {
"babel-core": "6.26.3",
"babel-eslint": "10.0.1",
"babel-jest": "23.6.0",
"babel-loader": "7.1.5",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-1": "6.24.1",
"enzyme": "3.7.0",
"eslint": "5.9.0",
"eslint-config-standard": "12.0.0",
"eslint-plugin-babel": "5.3.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jsx-a11y": "6.1.2",
"eslint-plugin-node": "8.0.0",
"eslint-plugin-promise": "4.0.1",
"eslint-plugin-react": "7.11.1",
"html-webpack-plugin": "3.2.0",
"jest": "23.6.0",
"jest-cli": "23.6.0",
"uglifyjs-webpack-plugin": "2.0.1",
"webpack": "4.25.1",
"webpack-cli": "3.1.2",
"webpack-dev-server": "3.1.10"
},
"dependencies": {
"@material-ui/core": "3.5.1",
"@material-ui/icons": "3.0.1",
"apollo-client-preset": "1.0.8",
"apollo-link-context": "1.0.9",
"classnames": "2.2.6",
"firebase": "5.5.8",
"graphql": "14.0.2",
"graphql-tag": "2.10.0",
"prop-types": "15.6.2",
"react": "16.6.3",
"react-apollo": "2.3.1",
"react-dom": "16.6.3",
"react-router-dom": "4.3.1",
"react-select": "2.1.1",
"react-share": "2.3.1",
"react-tap-event-plugin": "3.0.3"
},
"jest": {
"verbose": true,
"collectCoverage": true,
"roots": [
"<rootDir>/app"
],
"testPathIgnorePatterns": [
"/node_modules/",
"<rootDir>/dist/"
],
"modulePaths": [
"<rootDir>/app/"
]
}
}