-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
75 lines (75 loc) · 2.51 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "misojs",
"version": "0.0.27",
"private": false,
"scripts": {
"development": "touch -t 197804100000.00 system/main.js && nodemon -e js,css,json --watch package.json --watch modules/ --ignore 'modules/api/*/api.*.js' --watch system/ --ignore 'system/api/*/api.*.js' --ignore 'system/main.js' --watch cfg/ --watch mvc/ --ignore mvc/model/*.generated.js --watch client/ --watch server/ --watch app.js app.js",
"developmentforever": "touch -t 197804100000.00 system/main.js && nodemon --exitcrash -e js,css,json --watch package.json --watch modules/ --ignore 'modules/api/*/api.*.js' --watch system/ --ignore 'system/api/*/api.*.js' --ignore 'system/main.js' --watch cfg/ --watch mvc/ --ignore mvc/model/*.generated.js --watch client/ --watch server/ --watch app.js app.js",
"production": "touch -t 197804100000.00 system/main.js && node app.js",
"cordova": "node app.js exitWhenReady"
},
"bin": {
"miso": "bin/miso.bin.js"
},
"dependencies": {
"async": "^1.0.0",
"bcryptjs": "^2.3.0",
"body-parser": "^1.10.2",
"browserify": "^11.0.1",
"browserify-transform-tools": "^1.3.0",
"express": "~4.10.6",
"express-session": "^1.10.2",
"flat-file-db": "^0.1.3",
"fs-extra": "^0.14.0",
"grunt": "*",
"instagram-node": "^0.5.8",
"js-beautify": "^1.5.4",
"lodash": ">=2.4.1",
"marked": "^0.3.3",
"minifyify": "^6.1.1",
"minimist": "^1.1.0",
"mithril": "*",
"mithril-node-render": "^2.0.0",
"mithril.bindings": "0.0.3",
"mithril.component.mdl": "^0.0.4",
"mithril.sugartags": "0.0.5",
"node-uuid": "^1.4.2",
"nodemon": "^1.3.5",
"npm": "~3.5.2",
"promiz": "^1.0.3",
"request": "^2.53.0",
"sockjs": "0.3.12",
"sqlite3": "^3.0.5",
"validator": "^3.27.0",
"validator.modelbinder": "0.0.2"
},
"description": "MISOJS (Mithril ISOmorphic JavaScript) is a node.js and mithril based MVC implementation that provides an isomorphic environment to create apps quickly.",
"main": "app.js",
"directories": {
"test": "test"
},
"devDependencies": {
"mocha": "~2.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/jsguy/misojs.git"
},
"keywords": [
"mithril",
"isomorphic",
"framework",
"mvc",
"useful",
"jsguy"
],
"author": "Mikkel Bergmann",
"license": "MIT",
"bugs": {
"url": "https://github.com/jsguy/misojs/issues"
},
"browser": {
"./system/api.server.js": "./system/api.client.js"
},
"homepage": "https://github.com/jsguy/misojs"
}