-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·117 lines (117 loc) · 3.54 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "pain-reporting-portal",
"version": "0.1.0",
"description": "Pain Reporting Portal",
"main": "index.js",
"scripts": {
"check": "npm outdated && nsp check && bower list",
"documentation": "jsdoc --recurse api controller model rule task --destination documentation",
"init": "node task/init",
"postinstall": "bower install",
"lint": "eslint --ignore-path .gitignore . view/**/*.hbs --inline-config=false --quiet && remark *.md .github/*.md --quiet && stylelint view/stylesheet/*.css",
"lint-fix": "eslint . --fix --inline-config=false",
"log": "pm2 logs",
"preseed": "node task/sync",
"seed": "node task/seed",
"postseed": "node task/user",
"prestart": "jsonlint config.json --validate config-schema.json --quiet",
"start": "node task/start-dashboard && node task/start-scheduler",
"poststart": "pm2 ls",
"start-dashboard": "node task/start-dashboard",
"start-scheduler": "node task/start-scheduler",
"status": "pm2 ls",
"stop": "node task/stop-dashboard && node task/stop-scheduler",
"poststop": "pm2 ls",
"stop-dashboard": "node task/stop-dashboard",
"stop-scheduler": "node task/stop-scheduler",
"sync": "node task/sync",
"test": "env TEST=true nyc ava */*-test/*.js --timeout=15s",
"preuser": "node task/createUserSchema",
"user": "node task/user",
"user_new": "node task/user_new",
"init_new": "node task/init_new",
"validate": "jsonlint config.json --validate config-schema.json --quiet"
},
"repository": {
"type": "git",
"url": "git+https://github.com/promisasu/Portal.git"
},
"keywords": [
"medical",
"portal"
],
"author": "Arizona State University",
"license": "UNLICENSED",
"private": true,
"bugs": {
"url": "https://github.com/promisasu/Portal/issues"
},
"homepage": "https://github.com/promisasu/Portal#readme",
"dependencies": {
"ajv": "^6.5.1",
"ajv-keywords": "^3.2.0",
"bcrypt": "^3.0.0",
"bcryptjs": "^2.4.3",
"boom": "^7.2.0",
"bower": "^1.7.9",
"fast-safe-stringify": "^2.0.4",
"good": "^8.1.1",
"good-file": "^6.0.0",
"good-squeeze": "^5.1.0",
"handlebars": "^4.0.5",
"hapi": "^17.5.2",
"hapi-auth-basic": "^5.0.0",
"hashmap": "^2.0.6",
"inert": "^5.1.0",
"joi": "^13.4.0",
"joi-date-extensions": "^1.2.0",
"jsonlint": "^1.6.3",
"moment": "^2.22.2",
"mysql": "^2.10.2",
"mysql2": "^1.5.3",
"node-gyp": "^3.7.0",
"npm-check": "^5.7.1",
"parse-json": "^4.0.0",
"pm2": "^3.0.4",
"properties-reader": "0.0.16",
"read": "^1.0.7",
"sequelize": "^4.38.0",
"sleep": "^5.1.1",
"vision": "^5.3.3"
},
"devDependencies": {
"ava": "^0.25.0",
"eslint": "^5.0.0",
"eslint-plugin-ava": "^4.5.1",
"eslint-plugin-html": "^4.0.5",
"eslint-plugin-promise": "^3.8.0",
"jsdoc": "^3.4.0",
"nsp": "^3.2.1",
"nyc": "^12.0.2",
"proxyquire": "^2.0.1",
"remark": "^9.0.0",
"remark-cli": "^5.0.0",
"remark-html": "^8.0.0",
"remark-lint": "^6.0.2",
"remark-preset-lint-markdown-style-guide": "^2.1.2",
"remark-validate-links": "^7.0.0",
"sinon": "^6.0.1",
"stylelint": "^9.5.0",
"stylelint-config-recommended": "^2.1.0",
"stylelint-no-browser-hacks": "^1.2.1",
"stylelint-no-indistinguishable-colors": "^1.2.1",
"stylelint-order": "^1.0.0"
},
"engines": {
"node": ">=6.0.0",
"npm": ">=3.8.0"
},
"nyc": {
"exclude": [
"bcrypt-shim.js",
"model",
"controller/handler-test",
"controller/helper-test"
]
}
}