-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 971 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
34
35
36
37
38
39
{
"name": "munson-todo-mvc-example",
"version": "0.0.1",
"description": "A sample Todo MVC application using the Munson MVC framework",
"main": "build/start.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc -p . --pretty",
"prestart": "npm run build",
"start": "node build/start.js"
},
"keywords": [
"typescript",
"mvc",
"framework",
"munson",
"todomvc"
],
"author": "David Corona",
"license": "MIT",
"dependencies": {
"express-nunjucks": "^2.2.3",
"munson": "^0.0.4",
"nunjucks": "^3.1.3",
"randomstring": "^1.1.5"
},
"devDependencies": {
"grunt": "^1.0.1",
"grunt-concurrent": "^2.3.1",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-exec": "^3.0.0",
"grunt-nodemon": "^0.4.2",
"grunt-tslint": "^5.0.2",
"tslint": "^5.10.0",
"tslint-config-airbnb": "^5.9.2",
"typescript": "^2.2.1"
}
}