-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 993 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
{
"name": "personal-graph",
"version": "0.0.0",
"description": "Single-user graph store (pre-alpha)",
"authors": [
"Harlan T Wood <[email protected]> (http://nodesphere.org/)",
"Jack Senechal (https://github.com/jacksenechal)"
],
"license": "MIT",
"scripts": {
"dev": "npm run watch & watch-client",
"start": "node src/server/server.js",
"watch": "nodemon src/server/server.js",
"watch-client": "nodemon --watch src --exec 'browserify' src/client/index.coffee --transform coffeeify --extension='.coffee' --outfile public/bundle.js "
},
"devDependencies": {
"browser-sync": "^2.8.2",
"browserify": "^11.0.1",
"coffeeify": "^1.1.0",
"nodemon": "^1.4.0",
"nodesphere-graphviz": "*"
},
"repository": {
"type": "git",
"url": "https://github.com/nodesphere/personal-graph.git"
},
"dependencies": {
"coffee-script": "^1.9.3",
"express": "^4.13.3",
"lightsaber": "^0.4.1",
"serve-static": "^1.10.0"
}
}