forked from srinisoundar/react-webpack-babel-kit
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.03 KB
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
{
"name": "helloworld",
"bin": {},
"version": "1.1.0",
"description": "",
"main": "main.js",
"dependencies": {
"json-loader": "^0.5.4"
},
"devDependencies": {
"babel-core": "~6.18.2",
"babel-loader": "~6.2.8",
"babel-preset-latest": "~6.16.0",
"babel-preset-react": "~6.16.0",
"css-loader": "~0.26.0",
"extract-text-webpack-plugin": "~1.0.1",
"node-sass": "~3.13.0",
"react": "~15.4.1",
"react-dom": "~15.4.1",
"react-hot-loader": "~3.0.0-beta.6",
"sass-loader": "~4.0.2",
"style-loader": "~0.13.1",
"webpack": "~1.13.3",
"webpack-dev-server": "~1.16.2"
},
"scripts": {
"build": "./node_modules/webpack/bin/webpack.js -p",
"start": "./node_modules/webpack-dev-server/bin/webpack-dev-server.js --progress --colors",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"react",
"babel",
"es2015",
"webpack",
"sass",
"es6",
"hello world kit",
"kit"
],
"author": "srini.cug@gmail.com",
"license": "MIT"
}