-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.12 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "react-library-kit",
"version": "0.0.1",
"description": "React component library boilerplate, a project template for authoring and publishing React component libraries built with ES6+, Babel.",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/chetanism/react-library-kit.git"
},
"keywords": [
"react",
"boilerplate",
"project-template",
"react-library"
],
"author": "chetanism",
"license": "MIT",
"bugs": {
"url": "https://github.com/chetanism/react-library-kit/issues"
},
"homepage": "https://github.com/chetanism/react-library-kit#readme",
"peerDependencies": {
"react": "0.14.x",
"react-dom": "0.14.x"
},
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-core": "^6.4.5",
"babel-jest": "^6.0.1",
"babel-loader": "^6.2.1",
"babel-plugin-transform-runtime": "^6.4.3",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"bower-webpack-plugin": "^0.1.9",
"chai": "^3.5.0",
"copyfiles": "^0.2.1",
"css-loader": "^0.23.1",
"del": "^2.2.0",
"eslint": "^1.10.3",
"eslint-loader": "^1.2.1",
"file-loader": "^0.8.5",
"fs": "0.0.2",
"jest": "^0.1.40",
"jest-cli": "^0.8.2",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"mocha": "^2.4.5",
"node-sass": "^3.4.2",
"null-loader": "^0.1.1",
"open": "0.0.5",
"path": "^0.12.7",
"react-addons-test-utils": "^0.14.x",
"react-hot-loader": "^1.3.0",
"sass-loader": "^3.1.2",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "^1.12.12",
"webpack-dev-server": "^1.14.1"
},
"babel": {
"presets": [
"es2015",
"stage-0",
"react"
],
"plugins": [
"transform-runtime"
]
},
"scripts": {
"test": "jest --verbose",
"build": "babel-node tools/build.js",
"build2": "babel src -d lib",
"start": "node server.js --env=dev",
"copy": "copyfiles -f ./demo/index.html ./demo/favicon.ico ./build",
"dist": "npm run copy & node node_modules/webpack/bin/webpack.js --env=dist"
}
}