-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 921 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
{
"name": "reactcompo",
"version": "1.0.0",
"description": "React component library",
"main": "dist/reactcompo.js",
"scripts": {
"start": " npm run --env build",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack -d && webpack-dev-server --content-base src/ --inline",
"build:prod": " webpack -p"
},
"keywords": [
"react"
],
"author": "Jawath",
"license": "MIT",
"dependencies": {
"react": "^15.1.0",
"react-dom": "^15.1.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.11.0",
"copy-webpack-plugin": "4.5.1",
"html-webpack-plugin": "^3.2.0",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
}
}