forked from backstopmedia/bleeding-edge-sample-app
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.27 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": "bleeding-edge-sample-app",
"version": "0.0.1",
"description": "bleeding-edge-sample-app ========================",
"main": "server/server.js",
"scripts": {
"prestart": "browserify -t reactify client/client.js > public/build/bundle.js --debug",
"build": "browserify -t reactify client/client.js > public/build/bundle.js --debug",
"start": "node server/server.js",
"watch": "./node_modules/.bin/karma start karma.conf.js",
"test": "./node_modules/.bin/karma start --single-run --browsers PhantomJS"
},
"repository": {
"type": "git",
"url": "https://github.com/rtfeldman/bleeding-edge-sample-app.git"
},
"author": "",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/rtfeldman/bleeding-edge-sample-app/issues"
},
"homepage": "https://github.com/rtfeldman/bleeding-edge-sample-app",
"dependencies": {
"browserify": "^4.2.3",
"es5-shim": "^4.0.1",
"express": "^4.7.4",
"node-jsx": "^0.11.0",
"react": "^0.11.1",
"reactify": "^0.14.0"
},
"devDependencies": {
"karma": "^0.12.21",
"karma-bro": "^0.6.2",
"karma-chrome-launcher": "^0.1.4",
"karma-firefox-launcher": "^0.1.3",
"karma-jasmine": "^0.1.5",
"karma-phantomjs-launcher": "^0.1.4",
"react-tools": "^0.11.1"
}
}