forked from sprintly/sprintly-kanban
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.34 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "sprintly-kanban",
"private": true,
"version": "1.0.0",
"devDependencies": {
"babelify": "^5.0.4",
"backdash": "^1.1.2-2.4.1",
"bluebird": "^2.5.3",
"bootstrap": "^3.3.1",
"browserify": "^9.0.0",
"browserify-istanbul": "^0.2.1",
"chai": "^2.1.1",
"envify": "^3.2.0",
"es5-shim": "^4.0.6",
"exorcist": "^0.3.0",
"flux": "^2.0.1",
"fuzzy": "^0.1.0",
"gulp": "^3.8.10",
"gulp-csso": "^0.2.9",
"gulp-less": "^2.0.1",
"gulp-rename": "^1.2.0",
"gulp-sourcemaps": "^1.2.8",
"jquery": "^2.1.3",
"karma": "^0.12.31",
"karma-browserify": "~4.0.0",
"karma-chrome-launcher": "^0.1.7",
"karma-coverage": "^0.2.7",
"karma-firefox-launcher": "^0.1.4",
"karma-mocha": "^0.1.10",
"keymirror": "^0.1.1",
"lodash": "^2.4.1",
"mocha": "^2.2.1",
"moment": "^2.8.4",
"nodemon": "^1.3.6",
"oblique-strategies": "^1.0.1",
"react": "^0.12.2",
"react-bootstrap": "^0.16.0",
"react-loading": "0.0.1",
"react-localstorage": "0.2.2",
"react-mentions": "^0.1.2",
"react-onclickoutside": "^0.2.4",
"react-router": "^0.11.6",
"react-select": "^0.4.7",
"react-typeahead": "1.0.1",
"reactify": "^1.1.0",
"rewireify": "0.0.13",
"sinon": "^1.13.0",
"sprintly-search": "^2.3.0",
"sprintly-ui": "^1.0.0",
"uglify-js": "^2.4.14",
"watchify": "~3.1.2"
},
"scripts": {
"test": "NODE_ENV=test ./node_modules/karma/bin/karma start --browsers Firefox --single-run",
"watch-test": "NODE_ENV=test ./node_modules/karma/bin/karma start",
"watchify": "BASE_URL=https://local.sprint.ly:9000/api watchify app -d -v -o './node_modules/.bin/exorcist public/js/manifold.js.map > public/js/manifold.js'",
"watchify-test": "NODE_ENV=test watchify test/index.js -o './node_modules/.bin/exorcist test/test-bundle.js.map > test/test-bundle.js' -t rewireify -t babelify -t envify -dv",
"build": "BASE_URL=https://local.sprint.ly:9000/api browserify app -d | ./node_modules/.bin/exorcist public/js/manifold.js.map > public/js/manifold.js",
"build-test": "NODE_ENV=test browserify test/index.js -t rewireify -t babelify -t envify -d | ./node_modules/.bin/exorcist test/test-bundle.js.map > test/test-bundle.js",
"build-production": "npm run build-production-js && npm run build-production-css",
"build-production-js": "NODE_ENV=production browserify app | uglifyjs -cm > public/js/manifold.min.js",
"build-production-css": "gulp css",
"build-less": "gulp less",
"start": "node server.js"
},
"browserify": {
"transform": [
"babelify",
"envify"
]
},
"dependencies": {
"bell": "^4.0.0",
"config": "^1.14.0",
"good": "^6.1.4",
"good-console": "^5.0.2",
"hapi": "^8.6.1",
"hapi-auth-cookie": "^3.0.1",
"sprintly-data": "^2.0.0",
"superagent": "^1.2.0",
"swig": "^1.4.2"
},
"engines": {
"node": "0.10.x",
"npm": "2.7.x"
},
"description": "Oauth2 Client App w/ Hapi, React, Flux, and Sprinlty-Data",
"main": "server.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/quickleft/sprintly-kanban.git"
},
"author": "Quick Left",
"license": "ISC",
"bugs": {
"url": "https://github.com/quickleft/sprintly-kanban/issues"
},
"homepage": "https://github.com/quickleft/sprintly-kanban"
}