-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.46 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
{
"name": "sstatebb",
"version": "0.0.0",
"description": "",
"license": "MIT",
"main": "src/index.js",
"author": "rtorr <[email protected]> (http://rtorr.com)",
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"start": "NODE_ENV=PRODUCTION npm run build-styles & webpack & nodemon --exec babel-node -- ./index.js",
"dev": "NODE_ENV=DEV npm run watch-styles & webpack --progress --colors --watch & nodemon --exec babel-node -- ./index.js",
"watch-styles": "stylus -u yeticss -c -w ./public/styl/main.styl -o ./public/dist/_bundle.min.css",
"build-styles": "stylus -u yeticss -c ./public/styl/main.styl -o ./public/dist/bundle.min.css",
"lint": "eslint ./",
"test": "jest"
},
"browser": {
"request": "browser-request"
},
"jest": {
"scriptPreprocessor": "./util/jest_preprocessor.js",
"unmockedModulePathPatterns": [
"./node_modules/react"
],
"testFileExtensions": [
"js"
]
},
"peerDependencies": {
"react": "0.12.x"
},
"devDependencies": {
"babel": "^5.0.8",
"babel-core": "^4.0.0",
"babel-loader": "^5.0.0",
"babelify": "^5.0.4",
"browserify": "^9.0.3",
"clean-css": "^3.1.9",
"eslint": "^0.16.1",
"eslint-plugin-react": "^1.6.0",
"jest-cli": "^0.2.2",
"jsx-loader": "^0.13.1",
"knex": "^0.7.6",
"react-hot-loader": "^1.2.4",
"reactify": "^1.0.0",
"watchify": "^2.3.0",
"webpack": "^1.7.3",
"yeticss": "^6.0.2"
},
"dependencies": {
"amp-merge": "^1.0.0",
"bluebird": "^2.9.15",
"bookshelf": "^0.7.9",
"boom": "~2.6.1",
"cargo-bay": "^1.0.2",
"cookie": "^0.1.2",
"crumb": "^4.0.3",
"flux": "^2.0.1",
"freighter": "^1.0.3",
"hapi": "~8.0.0",
"hapi-cache-buster": "^0.3.0",
"jade": "~1.8.1",
"joi": "^6.0.8",
"lcars": "^1.0.8",
"lodash": "^3.5.0",
"lodash.foreach": "^3.0.2",
"lodash.merge": "^3.1.0",
"lodash.union": "^3.1.0",
"nconf": "^0.7.1",
"node-jsx": "^0.12.4",
"nodemon": "^1.3.7",
"oauth": "^0.9.12",
"pg": "^4.3.0",
"quick-auth-utils": "^2.0.2",
"react": "^0.12.2",
"react-hapi-jade-helper": "^1.0.0",
"react-router": "^0.11.6",
"react-tools": "^0.12.2",
"sqlite3": "^3.0.5",
"stylus": "LearnBoost/stylus#7bc13e1b566a9ac2a717a2b6f9cc188855277fdf",
"tactical-alert": "^1.0.0",
"tricorder": "^1.0.0",
"yar": "^3.0.3"
},
"repository": {
"type": "git",
"url": "[email protected]:sstate/sstateBB.git"
}
}