-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.51 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.51 KB
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
{
"name": "tg-room",
"version": "0.0.1",
"description": "Room microservice for Testing Ground",
"main": "index.js",
"author": "Kristiyan Serafimov (ChrispCode)",
"license": "MIT",
"scripts": {
"test": "ava --verbose",
"docker-test": "yarn run build && yarn run bootstrap && yarn test",
"build": "webpack",
"bootstrap": "webpack && node ./build/bootstrap.js",
"start": "node ./build/backend.js",
"debug": "webpack && node --inspect=0.0.0.0:9229 ./build/backend.js",
"docker": "docker-compose -f docker-compose/development.yml up -d",
"dev-watch-webpack": "webpack --watch",
"dev-watch-backend": "nodemon --inspect-brk=9229 ./build/backend.js"
},
"dependencies": {
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"bluebird": "^3.5.0",
"colors": "^1.1.2",
"hapi": "^16.4.3",
"joi": "^10.6.0",
"rethinkdbdash": "^2.3.29"
},
"devDependencies": {
"ava": "^0.21.0",
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-loader": "^7.1.1",
"babel-preset-flow": "^6.23.0",
"boom": "^5.1.0",
"eslint": "^4.3.0",
"eslint-plugin-compat": "^1.0.4",
"eslint-plugin-flowtype": "^2.35.0",
"eslint-plugin-flowtype-errors": "^3.3.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"flow-bin": "^0.49.1",
"webpack": "^3.1.0"
},
"ava": {
"require": [
"babel-register"
],
"babel": "inherit"
}
}