This repository has been archived by the owner on Dec 11, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.17 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
{
"name": "Bucketly",
"version": "0.0.1",
"private": true,
"description": "Free screenshot sharing, using your own S3.",
"main": "index.js",
"standard": {
"globals": [
"it",
"describe",
"beforeEach",
"afterEach"
],
"ignore": [
"client/build",
"client/node_modules"
]
},
"scripts": {
"lint": "standard --fix",
"test:setup": "NODE_ENV=test sequelize db:migrate",
"test:server": "NODE_ENV=test mocha test",
"test:client": "NODE_ENV=test cd client && npm test",
"test": "run-s lint test:setup test:server test:client",
"start:server": "node server",
"start:client": "cd client && npm start",
"start": "run-p start:server start:client",
"watch:client": "cd client/ && npm start",
"watch:server": "DEBUG=instant* nodemon server",
"watch": "run-p watch:client watch:server",
"build": "cd client && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/twobucks/bucketly.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/twobucks/bucketly/issues"
},
"homepage": "https://github.com/twobucks/bucketly#readme",
"dependencies": {
"auth0": "^2.7.0",
"aws-sdk": "^2.85.0",
"bluebird": "^3.5.0",
"body-parser": "^1.17.2",
"compression": "^1.6.2",
"ejs": "^2.5.6",
"emoji-favicon": "^0.3.0",
"express": "^4.15.3",
"express-jwt": "^5.3.0",
"jwks-rsa": "^1.2.0",
"lodash": "^4.17.4",
"morgan": "^1.8.2",
"multiparty": "^4.1.3",
"npm-run-all": "^4.1.1",
"pg": "^6.4.1",
"pg-hstore": "^2.3.2",
"s3-public-url": "^1.0.0",
"sequelize": "^4.4.2",
"sequelize-cli": "^2.7.0",
"standard": "^10.0.2",
"uuid": "^3.1.0"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-env": "^1.6.0",
"chai": "^4.1.1",
"mocha": "^3.5.0",
"mz": "^2.6.0",
"nodemon": "^1.11.0",
"proxyquire": "^1.8.0",
"sinon": "^3.2.1",
"stylus": "^0.54.5",
"supertest": "^3.0.0",
"supertest-as-promised": "^4.0.2",
"uglifyjs-webpack-plugin": "^0.4.6",
"webpack": "^2.6.1"
}
}