This repository has been archived by the owner on Oct 1, 2024. It is now read-only.
forked from gaearon/react-transform-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
68 lines (68 loc) · 1.99 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
{
"name": "react-hot-boilerplate-vscode",
"version": "1.0.0",
"description": "A new Webpack boilerplate with hot reloading React components, error handling on module and component level and Visual Studio Code integration",
"scripts": {
"clean": "rimraf dist",
"build:webpack": "cross-env NODE_ENV=production webpack --colors --config webpack.config.prod.js",
"build": "npm run clean && npm run build:webpack",
"start": "node devServer.js",
"lint": "eslint src/**",
"precommit": "npm run lint"
},
"repository": {
"type": "git",
"url": "https://github.com/skolmer/react-hot-boilerplate-vscode.git"
},
"keywords": [
"react",
"reactjs",
"boilerplate",
"hot",
"reload",
"hmr",
"live",
"edit",
"webpack",
"babel"
],
"author": "Steffen Kolmer <steffen@kolmer.net> (http://github.com/skolmer)",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/skolmer/react-hot-boilerplate-vscode/issues"
},
"homepage": "https://github.com/skolmer/react-hot-boilerplate-vscode",
"devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-transform-react-jsx-source": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-optimize": "^1.0.1",
"babel-preset-stage-0": "^6.24.1",
"cross-env": "^5.0.0",
"eslint": "^3.19.0",
"eslint-import-resolver-webpack": "^0.8.1",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-lodash": "^2.4.2",
"eslint-plugin-react": "^7.0.1",
"html-webpack-plugin": "^2.28.0",
"husky": "^0.13.4",
"react-hot-loader": "^3.0.0-beta.7",
"rimraf": "^2.6.1",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5"
},
"dependencies": {
"lodash": "^4.17.4",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-dom": "^15.5.4"
},
"config": {
"host": "localhost",
"port": 3000
}
}