-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.25 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
{
"name": "react-webpack-babel",
"version": "1.0.0",
"description": "starting boilerplate configured with react, babel and webpack2",
"main": "index.js",
"scripts": {
"cypress:open": "cypress open",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"start": "webpack-dev-server --hot --history-api-fallback --host 0.0.0.0",
"eslint": "./node_modules/.bin/eslint --ext .jsx,.js src cypress",
"build": "webpack"
},
"jest": {
"setupFiles": [
"./jestsetup.js"
]
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/marconicolodi/react-webpack-babel.git"
},
"keywords": [
"react",
"reactjs",
"babel",
"webpack",
"boilerplate"
],
"author": "Marco Nicolodi",
"license": "ISC",
"bugs": {
"url": "https://github.com/marconicolodi/react-webpack-babel/issues"
},
"homepage": "https://github.com/marconicolodi/react-webpack-babel#readme",
"dependencies": {
"@material-ui/core": "^3.7.1",
"@material-ui/icons": "^3.0.1",
"raf": "^3.4.0",
"react": "16.7.0-alpha.2",
"react-dom": "16.7.0-alpha.2",
"react-router-dom": "^4.3.1",
"typeface-roboto": "0.0.54"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.2.3",
"babel-core": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^20.0.3",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^2.1.0",
"cypress": "^3.1.4",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"eslint": "^4.10.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-cypress": "^2.1.3",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.4.0",
"file-loader": "^3.0.1",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.6.0",
"path": "^0.12.7",
"prettier": "^1.15.3",
"react-test-renderer": "^16.6.3",
"style-loader": "^0.23.1",
"webpack": "^4.28.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.13"
}
}