-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1.43 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
{
"name": "react-component-library-tutorial",
"version": "1.0.0",
"description": "react component library tutorial",
"main": "index.js",
"scripts": {
"start": "npm run watch & node server.js",
"watch": "node server.js & webpack --watch src/build.js index.js --output-library ReactUMD --output-library-target umd",
"build": "webpack ./src/build.js index.js --output-library ReactUMD --output-library-target umd",
"build-min": "webpack -p src/build.js dist/reactUMD.min.js --output-library ReactUMD --output-library-target umd",
"build-css": ""
},
"repository": {
"type": "git",
"url": "git+https://github.com/michaelguild13/react-component-library-tutorial.git"
},
"author": "Michael Guild <michaelguild13@gmail.com> (https://github.com/michaelguild13)",
"license": "ISC",
"bugs": {
"url": "https://github.com/michaelguild13/react-component-library-tutorial.git/issues"
},
"homepage": "https://github.com/michaelguild13/react-component-library-tutorial.git#readme",
"dependencies": {
"css-loader": "^0.15.6",
"extract-text-webpack-plugin": "^0.8.2",
"http-server": "^0.8.0",
"node-sass": "^3.2.0",
"sass-loader": "^1.0.3",
"style-loader": "^0.12.3",
"webpack": "^1.12.15",
"webpack-dev-server": "^1.10.1"
},
"devDependencies": {
"babel-core": "^5.8.20",
"babel-loader": "^5.3.2",
"css-loader": "^0.15.6",
"react": "^15.0.1",
"react-dom": "^15.0.1"
}
}