-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.14 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
{
"name": "bubbles",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "babel-node test",
"start": "node lib/start.js",
"hapi-test": "istanbul cover tape test/hapi-test.js",
"dev:build": "webpack --config ./webpack.development.config.js --progress --colors",
"dev:start": "webpack-dev-server --hot --inline --progress --colors --config ./webpack.development.config.js",
"build": "webpack --config ./webpack.production.config.js --progress --colors",
"dev": "webpack-dev-server --hot --inline --progress --colors --config ./webpack.development.config.js",
"postinstall": "webpack --config ./webpack.production.config.js --progress --colors"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jgne/bubbles.git"
},
"author": "jgne",
"license": "ISC",
"bugs": {
"url": "https://github.com/jgne/bubbles/issues"
},
"homepage": "https://github.com/jgne/bubbles#readme",
"dependencies": {
"babel-cli": "^6.3.15",
"babel-core": "^6.0.15",
"babel-loader": "^6.0.0",
"babel-plugin-transform-object-assign": "^6.3.13",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.1.2",
"css-loader": "^0.21.0",
"formsy-react": "^0.17.0",
"formsy-react-components": "^0.6.2",
"hapi": "^11.1.0",
"history": "~1.17.0",
"hoek": "^3.0.1",
"inert": "^3.2.0",
"jsx-loader": "^0.13.2",
"moment": "^2.10.6",
"on-build-webpack": "^0.1.0",
"react": "^0.14.3",
"react-addons-css-transition-group": "^0.14.3",
"react-datepicker": "^0.17.0",
"react-dnd": "^2.1.2",
"react-dnd-html5-backend": "^2.1.2",
"react-dom": "^0.14.3",
"react-router": "^1.0.1",
"react-static-container": "^1.0.0",
"style-loader": "^0.13.0",
"webpack": "^1.12.2"
},
"devDependencies": {
"babel-cli": "^6.3.15",
"istanbul": "^0.4.1",
"pre-commit": "^1.1.2",
"react-addons-test-utils": "^0.14.3",
"react-hot-loader": "^1.3.0",
"tape": "^4.2.2",
"webpack-dev-server": "^1.12.1"
},
"pre-commit": [
"test"
]
}