-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.93 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
{
"name": "my-react",
"version": "1.0.0",
"description": "A Simple Reactjs Scaffolding",
"main": "index.js",
"scripts": {
"bundle": "webpack",
"bundle:watch": "webpack --watch",
"build": "npm-run-all lint bundle",
"build:dev": "npm-run-all --parallel lint:watch bundle:watch",
"dev": "webpack-dev-server --open",
"lint": "node_modules/.bin/esw webpack.config.* src",
"lint:watch": "npm run lint -- --watch",
"lint:fix": "node_modules/.bin/eslint webpack.config.* src --fix",
"start": "npm-run-all build dev",
"deploy": "npm run bundle && gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GaneshmKumar/my-react.git"
},
"keywords": [
"React Scaffolding",
"React app"
],
"homepage": "https://ganeshmkumar.github.io/my-react",
"author": "GaNeShKuMaRm <ganeshkumar.m1996@gmail.com>",
"license": "MIT",
"dependencies": {
"axios": "^0.18.0",
"classnames": "^2.2.5",
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"eslint-watch": "^3.1.3",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"gh-pages": "^1.1.0",
"html-webpack-plugin": "^3.1.0",
"node-sass": "^4.8.3",
"npm-run-all": "^4.1.2",
"pre-commit": "^1.2.2",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.3",
"webpack": "^4.4.1",
"webpack-cleanup-plugin": "^0.5.1",
"webpack-cli": "^2.0.13",
"webpack-dev-server": "^3.1.1"
},
"pre-commit": [
"lint:fix",
"bundle"
]
}