-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
144 lines (144 loc) · 4.53 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "peachhub-provider",
"version": "0.0.0",
"description": "a hosted Scuttlebutt pub-as-a-service provider",
"scripts": {
"burnthemall": "rm -rf package-lock.json node_modules; npm i",
"burnthesql": "dropdb peachhub_provider_development -h localhost -U postgres; createdb peachhub_provider_development -h localhost -U postgres; npm run sql migrate:latest; npm run sql seed:run",
"debug": "DEBUG=*,-babel npm run dev",
"dev": "npm-run-all -p dev:*",
"dev:api": "node-dev ./api/bin | pino-colada",
"dev:asset": "node ./asset/bin | pino-colada",
"dev:mailer": "maildev",
"dev:worker": "node ./worker/bin | pino-colada",
"bundle:inspect": "bankai inspect ./app/index.js",
"bundle:build": "bankai build ./app ./dist",
"dist:copy": "cp asset/data/* ./dist",
"dist:build": "npm run bundle:build",
"dist:push": "gh-pages -d dist",
"dist": "npm-run-all -s dist:build dist:copy dist:push",
"precommit": "lint-staged",
"sql": "knex --knexfile sql/config.js --cwd .",
"start": "npm run prod",
"start:api": "node ./api/bin",
"start:asset": "node ./asset/bin",
"start:worker": "node ./worker/bin",
"style:lint": "standard",
"style:format": "prettier-standard '**/*.js' '**/*.md'",
"style": "npm-run-all -s style:format style:lint",
"test:burnthesql": "dropdb peachhub_provider_test -h localhost -U postgres; createdb peachhub_provider_test -h localhost -U postgres; NODE_ENV=test npm run sql migrate:latest; NODE_ENV=test npm run sql seed:run",
"test:codecept": "NODE_ENV=test codeceptjs run -c ./codecept.js",
"test:e2e": "npm-run-all -s test:burnthesql test:codecept",
"test:style": "npm-run-all -s style:lint",
"test:dist": "npm run dist:build",
"test": "npm-run-all -s test:style test:e2e test:dist"
},
"browserify": {
"transform": [
[
"./util/configify",
{
"keys": [
"api",
"asset"
]
}
]
]
},
"lint-staged": {
"linters": {
"*.js": [
"prettier-standard",
"standard",
"git add"
],
"*.md": [
"prettier-standard",
"git add"
]
}
},
"standard": {
"globals": [
"localStorage",
"Feature",
"Scenario",
"actor"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/peachcloud/peachhub-provider.git"
},
"author": "Mikey <[email protected]> (http://dinosaur.is)",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/peachcloud/peachhub-provider/issues"
},
"homepage": "https://github.com/peachcloud/peachhub-provider#readme",
"dependencies": {
"@feathersjs/authentication": "^2.1.5",
"@feathersjs/authentication-client": "^1.0.2",
"@feathersjs/authentication-jwt": "^2.0.1",
"@feathersjs/configuration": "^1.0.2",
"@feathersjs/express": "^1.2.2",
"@feathersjs/feathers": "^3.1.5",
"@feathersjs/socketio": "^3.2.1",
"@feathersjs/socketio-client": "^1.1.0",
"ajv": "^6.5.0",
"bankai": "^9.12.0",
"compression": "^1.7.2",
"cors": "^2.8.4",
"express-pino-logger": "^3.0.1",
"feathers-authentication": "^1.3.1",
"feathers-authentication-hooks": "^0.1.7",
"feathers-hooks-common": "^4.11.1",
"feathers-knex": "^3.1.0",
"fela": "^6.1.7",
"final-form": "^4.6.1",
"helmet": "^3.12.0",
"internal-nav-helper": "^1.0.2",
"ioredis": "^3.2.2",
"knex": "^0.14.6",
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2",
"material-ui": "^1.0.0-beta.47",
"mjml": "^4.0.5",
"node-resque": "^5.3.0",
"nodemailer": "^4.6.4",
"npm-run-all": "^4.1.3",
"pg": "^7.4.3",
"pino": "^4.16.1",
"ramda": "^0.25.0",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-fela": "^7.2.0",
"react-final-form": "^3.4.0",
"react-hyperscript": "^3.2.0",
"recompose": "^0.26.0",
"redux-bundler": "^21.2.0",
"redux-bundler-react": "^1.0.0",
"redux-form-material-ui": "^5.0.0-beta.2",
"redux-form-with-ajv": "^0.4.0",
"serve-favicon": "^2.5.0",
"server-summary": "^6.1.0",
"socket.io-client": "^2.1.0",
"static-module": "^2.2.5",
"string-to-stream": "^1.1.1"
},
"devDependencies": {
"budo": "^11.2.0",
"codeceptjs": "^1.1.8",
"delay": "^2.0.0",
"find-port-sync": "^1.1.1",
"husky": "^0.14.3",
"lint-staged": "^7.1.0",
"maildev": "^1.0.0-rc3",
"nightmare": "^3.0.1",
"node-dev": "^3.1.3",
"pino-colada": "^1.4.4",
"prettier-standard": "^8.0.1",
"standard": "^11.0.1"
}
}