forked from siradji/react-app-skelaton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.27 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
{
"name": "react_boiler_plate",
"version": "1.0.0",
"description": "A Quick Alternative to CRA",
"main": "src/index.js",
"author": "Siradji Awoual",
"repository": {
"url": "https://github.com/kraken-coder/react-app-skelaton"
},
"keywords": [
"react",
"webpack",
"babel",
"boilerplate"
],
"license": "MIT",
"private": false,
"scripts": {
"start": "webpack-dev-server --history-api-fallback --config webpack.dev.js --open --hot",
"build": "webpack --config webpack.prod.js",
"lint": "eslint .",
"test": "jest",
"deploy": "netlify deploy --dir=build --prod ",
"format": "prettier --write \"**/*.+(js|jsx|json|yml|yaml|css|md|vue)\""
},
"dependencies": {
"@babel/polyfill": "^7.8.3",
"dotenv-webpack": "^1.7.0",
"minimist": "^1.2.5",
"netlify-cli": "^2.40.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-router-dom": "^5.2.0",
"shopify-buy": "^2.10.0",
"styled-components": "^5.1.0"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.1.0",
"babel-loader": "^8.0.6",
"css-loader": "^3.4.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.4",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"eslint-watch": "^6.0.1",
"html-loader": "^1.0.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^4.2.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^25.1.0",
"lint-staged": "^10.0.8",
"prettier": "^1.19.1",
"style-loader": "^1.1.3",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-merge": "^4.2.2"
},
"husky": {
"hooks": {
"pre-commit": "yarn format && yarn lint"
}
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>src/setupTest.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"moduleNameMapper": {
"\\.(css|less|scss)$": "identity-obj-proxy"
}
}
}