-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.01 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": "bdc",
"version": "0.1.0",
"description": "Behavior Driven Composition",
"main": "index.js",
"scripts": {
"build": "browserify -s bundle index.js -t [ babelify --presets [ es2015 react ] ] > public/bundle.js",
"start": "babel-node --presets es2015 server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/troutowicz/bdc.git"
},
"keywords": [
"bdc",
"stamp",
"react",
"mixins"
],
"author": "Tim Routowicz <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/troutowicz/bdc/issues"
},
"homepage": "https://github.com/troutowicz/bdc#readme",
"dependencies": {
"express": "^4.13.4",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"react-stamp": "^0.5.0"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babelify": "^7.2.0",
"browserify": "^13.0.0"
}
}