-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
102 lines (102 loc) · 3.34 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
{
"name": "hostr",
"description": "Hostr - simple sharing",
"repository": "https://github.com/kudos/hostr-web",
"version": "0.0.0",
"private": true,
"engines": {
"node": ">=11.0.0"
},
"scripts": {
"build": "yarn run build-js && yarn run build-sass",
"build-js": "webpack --progress -p -c webpack.config.js",
"build-sass": "node-sass --include-path ./node_modules/ -r -o web/public/styles/ web/public/styles/",
"heroku-postbuild": "yarn run build",
"init": "babel-node -e \"require('./lib/storage').default();\"",
"initdb": "node -r babel-register test/initdb.js",
"lint": "eslint .",
"start": "node -r babel-register app.js",
"test": "yarn run test-seed && mocha -r babel-register test/**/*.spec.js",
"test-seed": "babel-node test/fixtures/user.js",
"watch": "concurrently -k -n watch-js,watch-sass \"yarn run watch-js\" \"yarn run watch-sass\"",
"watch-js": "webpack -w --mode=development --progress -c webpack.config.js",
"watch-server": "nodemon -r babel-register -i web/public",
"watch-sass": "node-sass --include-path ./node_modules/ -w -r -o web/public/styles/ web/public/styles/"
},
"dependencies": {
"@sendgrid/mail": "^7.1.1",
"@sentry/node": "^5.27.6",
"angular": "^1.7.9",
"angular-reconnecting-websocket": "https://github.com/adieu/angular-reconnecting-websocket#0.1.1",
"angular-resource": "^1.7.9",
"angular-route": "^1.7.9",
"angular-strap": "^2.3.8",
"aws-sdk": "^2.800.0",
"babel": "^6.5.2",
"babel-cli": "^6.10.1",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-register": "^6.9.0",
"basic-auth": "~2.0.1",
"bootstrap-sass": "^3.4.0",
"busboy": "^0.3.0",
"co": "~4.6.0",
"co-redis": "^2.1.0",
"co-views": "~2.1.0",
"copy-webpack-plugin": "^6.0.2",
"debug": "~4.1.1",
"dropzone": "~5.7.0",
"ejs": "^3.1.3",
"ejs-lint": "^1.1.0",
"form-data": "^3.0.0",
"http-errors": "^1.8.0",
"image-size": "^0.8.3",
"jimp": "^0.13.0",
"jquery": "^3.5.0",
"kcors": "^2.2.2",
"koa": "^2.11.0",
"koa-bodyparser": "^4.3.0",
"koa-compress": "~4.0.1",
"koa-csrf": "^3.0.8",
"koa-error": "^3.2.0",
"koa-favicon": "~2.1.0",
"koa-generic-session": "^2.0.4",
"koa-helmet": "^5.2.0",
"koa-logger": "~3.2.1",
"koa-redis": "^4.0.1",
"koa-router": "^10.0.0",
"koa-session": "^6.0.0",
"koa-static": "^5.0.0",
"koa-views": "^6.2.1",
"koa-websocket": "^6.0.0",
"kue": "^0.11.6",
"mime-types": "^2.1.26",
"moment": "^2.29.1",
"mz": "^2.7.0",
"node-fetch": "^2.6.1",
"node-sass": "^4.14.0",
"node-uuid": "^1.4.8",
"passwords": "^1.3.1",
"pg": "^8.0.3",
"redis": "^3.0.2",
"sequelize": "^5.21.11",
"smooth-scroll": "https://github.com/cferdinandi/smooth-scroll#5.3.7",
"statsy": "~0.2.0",
"stripe": "^8.126.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"zeroclipboard": "^2.2.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"concurrently": "^5.1.0",
"eslint": "^7.2.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.20.2",
"mocha": "^8.0.0",
"nodemon": "^2.0.2",
"supertest": "^4.0.2",
"tmp": "0.2.1"
}
}