-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 799 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 799 Bytes
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
{
"name": "flask-backbone-todo",
"version": "1.0.0",
"description": "Flask and backbone todo app",
"keywords": [
"backbone",
"frontend"
],
"scripts": {
"build": "browserify ./js/src/main.js -o ./app/static/js/main.js",
"watch": "watchify ./js/src/main.js -o ./app/static/js/main.js -dv",
"server": "source ./env/bin/activate && python run.py",
"start": "npm run watch & npm run server"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:cfierro/todo.git"
},
"devDependencies": {
"browserify": "^11.2.0",
"watchify": "^3.4.0"
},
"dependencies": {
"backbone": "^1.1.3",
"jquery": "^2.1.4",
"underscore": "^1.8.3"
}
}