This repository has been archived by the owner on Dec 16, 2019. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.18 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
{
"name": "rblg",
"version": "0.0.5",
"description": "rblg",
"main": "index.js",
"config": {
"DEST": "build",
"PORT": "3000",
"FIREBASE": "https://<YOUR_ID>.firebaseio.com"
},
"scripts": {
"build": "npm-run-all -s build:before build:bundle",
"build:before": "mkdir -p $npm_package_config_DEST",
"build:bundle": "browserify -t [ @jigsaw/anyify --ls [ livescript?compile ] ] src/index.ls > $npm_package_config_DEST/index.js",
"build:dev": "browserifyinc -p browserify-notify -t [ @jigsaw/anyify --ls [ livescript?compile ] ] src/index.ls -o $npm_package_config_DEST/index.js -v",
"build:production": "npm-run-all -s build uglify",
"clean": "rm -rf $npm_package_config_DEST",
"uglify": "uglifyjs --compress --mangle -- $npm_package_config_DEST/index.js > $npm_package_config_DEST/index.min.js && cat $npm_package_config_DEST/index.min.js > $npm_package_config_DEST/index.js && rm -f $npm_package_config_DEST/index.min.js",
"start": "lsc src/server.ls",
"watch": "chokidar '?(src/*.ls|src/**/*.ls)' -c 'npm run build:dev'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jgsme/rblg.git"
},
"author": "jigsaw (http://jgs.me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jgsme/rblg/issues"
},
"homepage": "https://github.com/jgsme/rblg#readme",
"dependencies": {
"@jigsaw/anyify": "^1.0.1",
"browserify": "^13.0.0",
"es6-promise": "^3.0.2",
"firebase": "^2.4.0",
"good": "^6.4.0",
"good-console": "^5.3.0",
"hapi": "^12.1.0",
"inert": "^3.2.0",
"isomorphic-fetch": "^2.2.1",
"jade": "^1.11.0",
"livescript": "^1.5.0",
"lodash.assign": "^4.0.1",
"neo-async": "^1.7.2",
"npm-run-all": "^2.2.2",
"pouchdb": "^5.2.1",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"react-notification-system": "^0.2.5",
"react-redux": "^4.1.2",
"redux": "^3.1.5",
"redux-thunk": "^1.0.0",
"request": "^2.72.0",
"sanitize-html": "^1.11.3",
"tumblr.js": "0.0.7",
"uglify-js": "^2.5.0",
"vision": "^4.0.1"
},
"devDependencies": {
"browserify-incremental": "^3.0.1",
"browserify-notify": "^1.1.2",
"chokidar-cli": "^1.2.0"
}
}