-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 934 Bytes
/
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
{
"name": "hello-world",
"version": "0.0.1",
"private": true,
"description": "React + Webpack hello world app",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --hot",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"hello-world"
],
"author": "Francois Ward",
"license": "MIT",
"devDependencies": {
"babel": "^5.8.21",
"babel-core": "^5.8.22",
"babel-eslint": "^4.0.10",
"babel-loader": "^5.3.2",
"css-loader": "^0.16.0",
"eslint": "^1.2.1",
"eslint-config-airbnb": "0.0.8",
"eslint-loader": "^1.0.0",
"eslint-plugin-react": "^3.2.3",
"less": "^2.5.1",
"less-loader": "^2.2.0",
"react-hot-loader": "^1.2.8",
"style-loader": "^0.12.3",
"webpack": "^1.11.0",
"webpack-dev-server": "^1.10.1"
},
"dependencies": {
"babel-runtime": "^5.8.20",
"domready": "^1.0.8",
"react": "^0.13.3"
}
}