-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 3.36 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
{
"name": "getset",
"version": "2.2.3",
"description": "An application for creating, validating, reusing and extending sets of clinical codes. https://getset.ga",
"main": "index.js",
"scripts": {
"start": "npm run serve",
"serve": "concurrently -kill-others-on-fail \"npm run build\" \"nodemon src/server/index.js\"",
"build": "rollup -c -w",
"debug": "concurrently -kill-others-on-fail \"npm run build\" \"nodemon --inspect-brk src/server/index.js\"",
"build-prod-server": "rollup -c",
"heroku-postbuild": "npm run build-prod-server",
"test": "mocha --recursive test",
"test-debug": "mocha --recursive --inspect-brk test",
"deploy": "node deploy.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rw251/getset.git"
},
"author": "Richard Williams",
"license": "ISC",
"bugs": {
"url": "https://github.com/rw251/getset/issues"
},
"engines": {
"npm": "5.x.x",
"node": "8.x.x"
},
"homepage": "https://getset.ga",
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@rollup/plugin-alias": "^3.1.0",
"@rollup/plugin-commonjs": "^11.0.1",
"@rollup/plugin-node-resolve": "^7.0.0",
"babel-loader": "^8.1.0",
"chai": "^4.2.0",
"concurrently": "^4.1.2",
"css-loader": "^2.1.1",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"file-loader": "^3.0.1",
"form-data": "^3.0.0",
"html-loader": "^0.5.5",
"http-server": "^0.12.1",
"inquirer": "^6.5.2",
"mini-css-extract-plugin": "^0.5.0",
"mocha": "^4.1.0",
"mustache": "^3.2.1",
"node-fetch": "^2.6.0",
"node-sass": "^4.14.1",
"nodemon": "^1.19.4",
"npm-run-all": "^4.1.5",
"open": "^7.0.4",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"rollup": "^1.29.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-module-replacement": "^1.1.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-postcss": "^2.0.4",
"rollup-plugin-rollbar-deploy": "^1.1.2",
"rollup-plugin-rollbar-sourcemaps": "^1.1.0",
"rollup-plugin-terser": "^5.2.0",
"sass-loader": "^7.3.1",
"standard": "^8.6.0",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2"
},
"dependencies": {
"atob": "^2.1.2",
"bcrypt-nodejs": "0.0.3",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"bootstrap": "^3.4.1",
"bootstrap-social": "^5.1.1",
"btoa": "^1.2.1",
"clusterize.js": "^0.18.1",
"compression": "^1.7.4",
"debug": "^2.6.6",
"dotenv": "^4.0.0",
"express": "^4.17.1",
"express-flash": "0.0.2",
"express-force-ssl": "^0.3.2",
"express-pino-logger": "^2.0.0",
"express-session": "^1.17.1",
"file-saver": "^1.3.8",
"github": "^9.3.1",
"jquery": "^3.5.1",
"jszip": "^3.4.0",
"localforage": "^1.7.3",
"mongoose": "^4.13.20",
"mongoose-lean-virtuals": "^0.3.5",
"nodemailer": "^4.7.0",
"nosleep.js": "^0.5.1",
"page": "^1.11.6",
"passport": "^0.4.1",
"passport-github": "^1.1.0",
"passport-github2": "^0.1.12",
"passport-local": "^1.0.0",
"pino": "^4.17.6",
"request": "^2.88.2",
"request-promise": "^4.2.5",
"rollbar": "^2.16.2",
"serve-favicon": "^2.5.0"
},
"heroku-run-build-script": true
}