forked from attihms/hms-back-end
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.44 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.44 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
{
"name": "hms",
"description": "",
"version": "1.0.0",
"homepage": "",
"main": "src/",
"keywords": [
""
],
"license": "MIT",
"repository": {},
"author": {},
"contributors": [],
"bugs": {},
"engines": {
"node": "6.5.0"
},
"scripts": {
"test": "npm run jshint && npm run mocha",
"jshint": "jshint src/. test/. --config",
"start": "node src/",
"dev": "nf start dev=1",
"web": "nf start",
"mocha": "mocha test/ --recursive",
"deploy_database": "nf start deploy_database=1",
"generate_sample_data": "node data/create-sample"
},
"dependencies": {
"body-parser": "1.15.2",
"compression": "1.6.2",
"cors": "2.8.1",
"feathers": "2.0.1",
"feathers-authentication": "0.7.10",
"feathers-configuration": "0.2.3",
"feathers-errors": "2.4.0",
"feathers-hooks": "1.5.7",
"feathers-rest": "1.5.0",
"feathers-sequelize": "1.3.2",
"foreman": "2.0.0",
"lodash": "4.15.0",
"passport": "0.3.2",
"pg": "6.1.0",
"pg-hstore": "2.3.2",
"sequelize": "3.24.2",
"sequelize-cli": "2.4.0",
"serve-favicon": "2.3.0",
"winston": "2.2.0"
},
"devDependencies": {
"babel-cli": "6.14.0",
"babel-polyfill": "6.13.0",
"babel-preset-es2015": "6.14.0",
"babel-preset-es2016": "6.11.3",
"babel-preset-stage-2": "6.13.0",
"faker": "3.1.0",
"jshint": "2.9.3",
"mocha": "3.0.2",
"nodemon": "1.10.2",
"request": "2.74.0"
}
}