-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.88 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.88 KB
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
{
"name": "ecolearnia-studio",
"version": "0.0.1",
"description": "EcoLearnia's content authoring studio",
"main": "ecolearnia-studio.js",
"scripts": {
"build-deps": "browserify -t babelify -r bluebird -r lodash -r react/addons | uglifyjs -c > public/js/el-externdeps.bundle.min.js",
"build-inter": "browserify -t babelify -x bluebird -x lodash -x react/addons -r ./client/interactives/interactives.js:interactives -r -o public/js/el-interactives.bundle.js -d",
"watch-inter": "watchify -t babelify -x bluebird -x jquery -x lodash -x react/addons -r ./client/interactives/interactives.js:interactives -r -o public/js/el-interactives.bundle.js -d -v",
"build-client": "browserify -t [babelify --stage 0] -x bluebird -x jquery -x lodash -x react/addons -r ./client/common/promiseutils:promiseutils -r ./client/clientapp:clientapp -r ./client/views/contentcollection-view:contentcollection-view -r ./client/views/contenttree-view:contenttree-view -r ./client/views/contenteditorpane-component:contenteditorpane-component -o public/js/el-studio.bundle.js -d",
"watch-client": "watchify -t [babelify --stage 0] -x bluebird -x jquery -x lodash -x react/addons -r ./client/common/promiseutils:promiseutils -r ./client/clientapp:clientapp -r ./client/views/contentcollection-view:contentcollection-view -r ./client/views/contenttree-view:contenttree-view -r ./client/views/contenteditorpane-component:contenteditorpane-component -o public/js/el-studio.bundle.js -d -v",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/altenia/ecolearnia-studio.git"
},
"keywords": [
"learning",
"studio"
],
"author": "Young-Suk Ahn Park",
"license": "MIT",
"dependencies": {
"ampersand-collection": "^1.4.5",
"ampersand-collection-view": "^1.4.0",
"ampersand-events": "^1.1.1",
"ampersand-model": "^5.0.3",
"ampersand-rest-collection": "^4.0.0",
"ampersand-router": "^3.0.2",
"ampersand-view": "^7.3.0",
"async": "^0.9.0",
"bluebird": "^2.9.27",
"bunyan": "^1.3.3",
"classnames": "^2.1.3",
"cohevium": "git://github.com/altenia/cohevium.git",
"deep-equal": "^1.0.0",
"fast-json-patch": "^0.5.1",
"handlebars": "^3.0.0",
"hapi": "^8.2.0",
"hoek": "^2.11.0",
"joi": "^5.1.0",
"jquery": "^2.1.3",
"lodash": "^3.2.0",
"lout": "^6.1.0",
"materialize-css": "^0.96.1",
"mathjs": "^1.7.0",
"nconf": "^0.7.1",
"node-uuid": "^1.4.2",
"promise": "^6.1.0",
"react": "^0.13.2",
"react-intl": "^1.2.0",
"themis": "^1.1.5"
},
"devDependencies": {
"babel-core": "^5.4.5",
"babelify": "^6.1.1",
"blanket": "^1.1.7",
"browserify": "latest",
"chai": "^2.0.0",
"glob": "^5.0.10",
"mocha": "^2.1.0",
"reactify": "^1.1.0",
"should": "^5.0.0",
"sinon": "^1.12.2",
"watchify": "latest"
}
}