-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.99 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.99 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
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
{
"name": "Spectre",
"description": "Hapi-React-Couch",
"version": "0.0.1",
"author": "Garrren Smith <garren.smith@gmail.com>",
"contributors": [
{
"name": "Andrew Bestbier",
"email": "andrew@redcometlabs.com"
}
],
"main": "server.js",
"engines": {
"node": ">5.0"
},
"scripts": {
"server-start": "babel-node server.js",
"client-start": "webpack-dev-server",
"client-test": "NODE_ENV=test mocha --compilers js:babel-core/register --require ./test/client-tests/client-test-helper.js 'test/client-tests/**/*.@(js|jsx)'",
"server-test": "NODE_ENV=test mocha --compilers js:babel-core/register --require ./test/server-tests/server-test-helper.js --recursive 'test/server-tests/**/*.@(js|jsx)'",
"ci-test": "./scripts/pouchdb-test.sh && npm test",
"test": "npm run server-test && npm run client-test",
"lint": "eslint client",
"setupdb": "node ./scripts/setupdb.js",
"postinstall": "make prod",
"watch-server": "sleep 20 && npm run setupdb && nodemon -L -w ./server -w ./lib/ -x NODE_ENV=development node server.js",
"webpack-docker": "webpack-dev-server --config ./webpack.config.docker-dev.js --host 0.0.0.0"
},
"babel": {
"presets": [
"es2015",
"react"
]
},
"dependencies": {
"babel": "~6.3.13",
"babel-cli": "^6.3.15",
"babel-core": "~6.4.0",
"babel-loader": "~6.2.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-register": "^6.3.13",
"babel-runtime": "^6.3.13",
"bluebird": "~3.1.1",
"boom": "~3.1.1",
"bootstrap": "^3.3.6",
"codemirror": "~5.11.0",
"exports-loader": "~0.6.2",
"expose-loader": "~0.7.0",
"good": "~6.4.0",
"good-console": "~5.3.0",
"h2o2": "^5.0.0",
"hapi": "~12.1.0",
"hapi-auth-cookie": "~3.1.0",
"highlight.js": "~9.1.0",
"history": "~1.17.0",
"hoek": "~3.0.4",
"immutable": "~3.7.5",
"imports-loader": "~0.6.5",
"inert": "~3.2.0",
"joi": "~7.2.2",
"less": "~2.5.1",
"lodash": "^4.0.1",
"node-uuid": "~1.4.3",
"nodemailer": "~2.0.0",
"notie": "^2.1.0",
"pouchdb": "~5.1.0",
"pouchdb-find": "^0.9.0",
"react": "~0.14",
"react-bootstrap": "^0.28.1",
"react-bootstrap-validation": "^0.1.11",
"react-codemirror": "~0.2.2",
"react-dom": "~0.14.2",
"react-progress-2": "^4.1.1",
"react-redux": "~4.0.0",
"react-router": "~1.0.0-rc1",
"redux": "~3.0.4",
"redux-thunk": "~1.0.0",
"remarkable": "~1.6.0",
"webpack": "~1.12.3",
"whatwg-fetch": "~0.11.0"
},
"devDependencies": {
"chai": "~3.4.1",
"chai-immutable": "~1.5.1",
"enzyme": "^1.4.1",
"eslint": "~1.10.3",
"eslint-plugin-react": "^3.11.3",
"jsdom": "~7.2.0",
"jshint": "~2.9.1-rc1",
"mocha": "~2.4.4",
"pouchdb-server": "^1.0.0",
"react-addons-test-utils": "^0.14.6",
"react-hot-loader": "~1.3.0",
"sinon": "~1.17.2",
"sinon-chai": "~2.8.0",
"webpack-dev-server": "~1.14.0"
},
"license": "MIT"
}