-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
80 lines (80 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
{
"name": "react-boilerplate",
"version": "1.0.2",
"description": "RB is a customizable boilerplate for React projects.",
"main": "index.js",
"scripts": {
"build": "webpack --mode production",
"dev": "webpack-dev-server --open --mode development",
"heroku-postbuild": "npm run build",
"lint": "eslint src",
"prettior": "prettier --write src/**/*.js",
"start": "serve -s dist",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch-all": "jest --watchAll"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gomorizsolt/react-boilerplate.git"
},
"keywords": [
"react",
"boilerplate",
"react-boilerplate"
],
"author": "Zsolt Gomori",
"license": "MIT",
"bugs": {
"url": "https://github.com/gomorizsolt/react-boilerplate/issues"
},
"homepage": "https://github.com/gomorizsolt/react-boilerplate#readme",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"babel-loader": "^8.0.5",
"css-loader": "^2.1.0",
"dotenv-webpack": "^1.7.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.9.1",
"enzyme-to-json": "^3.3.5",
"eslint": "^5.13.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.0.0",
"eslint-import-resolver-babel-module": "^5.0.1",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.5.0",
"file-loader": "^3.0.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^5.5.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.1.0",
"pre-commit": "^1.2.2",
"prettier": "^1.16.4",
"style-loader": "^0.23.1",
"sw-precache-webpack-plugin": "^0.11.5",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.14",
"webpack-manifest-plugin": "^2.0.4"
},
"dependencies": {
"prop-types": "^15.7.2",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"serve": "^10.1.2",
"styled-components": "^4.1.3"
},
"pre-commit": [
"test",
"lint"
]
}