This repository has been archived by the owner on Aug 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.9 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
{
"name": "webpack-react-workflow",
"version": "0.1.0",
"description": "A dummy project on how to integrate React and Webpack in a Web project",
"devDependencies": {
"autoprefixer": "^5.2.0",
"babel-core": "^5.8.22",
"babel-loader": "^5.3.2",
"chai": "^3.2.0",
"core-js": "^1.0.1",
"css-loader": "^0.15.6",
"eslint": "^1.1.0",
"eslint-loader": "^1.0.0",
"eslint-plugin-react": "^3.3.0",
"http-server": "^0.8.0",
"isparta-loader": "^0.2.0",
"karma": "^0.13.9",
"karma-chai": "^0.1.0",
"karma-coverage": "^0.5.0",
"karma-mocha": "^0.2.0",
"karma-phantomjs-launcher": "^0.2.1",
"karma-webpack": "^1.7.0",
"mocha": "^2.2.5",
"node-sass": "3.2.0",
"postcss-loader": "^0.6.0",
"react": "^0.13.3",
"react-hot-loader": "^1.2.8",
"sass-loader": "^2.0.0",
"style-loader": "^0.12.3",
"webpack": "^1.11.0",
"webpack-dev-server": "^1.10.1"
},
"scripts": {
"browse": "open http://localhost:5001",
"build": "webpack",
"clean": "rm -fr tmp/coverage/javascript/* && rm -fr dist/*",
"dev-server": "node webpack-dev-server.js",
"start": "http-server -p 5001",
"lint": "eslint ./; exit 0",
"test": "karma start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/whichdigital/webpack-react-workflow.git"
},
"keywords": [
"React",
"ReactJS",
"Webpack",
"tutorial",
"guide"
],
"author": "Ahmet Katranci (https://github.com/katranci)",
"contributors": [
"Chris Kobrzak (https://github.com/chris-kobrzak)",
"Jacob Walton (https://github.com/jacobwalton)",
"Rob Parsons (https://github.com/rob-parsons)",
"Edmond Kojumdgian (https://github.com/edmondko)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/whichdigital/webpack-react-workflow/issues"
},
"homepage": "https://github.com/whichdigital/webpack-react-workflow#readme"
}